.emacs.d/init.d/programming/misc.el
tastytea 2d576fec10 Rename .emacs/init → .emacs/init.d and fix comment-face.
Inheriting `font-lock-comment-face` in `font-lock-comment-face` would lock up
Emacs.
2019-12-26 19:23:43 +01:00

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