15 lines
340 B
EmacsLisp
15 lines
340 B
EmacsLisp
|
;;; misc.el --- Miscellaneous programming languages. -*- lexical-binding: t; -*-
|
||
|
|
||
|
;; Time-stamp: <2019-11-14T11:49:23+00:00>
|
||
|
|
||
|
;;; Commentary:
|
||
|
;; Programming languages I don't normally program in and only care about syntax
|
||
|
;; highlighting and indentation.
|
||
|
|
||
|
;;; Code:
|
||
|
|
||
|
(use-package go-mode)
|
||
|
|
||
|
(provide 'programming/misc)
|
||
|
;;; misc.el ends here
|