2019-11-14 12:51:21 +01:00
|
|
|
;;; misc.el --- Miscellaneous programming languages. -*- lexical-binding: t; -*-
|
|
|
|
|
2020-02-18 17:10:02 +01:00
|
|
|
;; Time-stamp: <2020-02-18T17:06:25+0100>
|
2019-11-14 12:51:21 +01:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;; Programming languages I don't normally program in and only care about syntax
|
|
|
|
;; highlighting and indentation.
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2020-02-18 17:10:02 +01:00
|
|
|
(use-package go-mode
|
|
|
|
:mode
|
|
|
|
("\\.go$" . go-mode)
|
|
|
|
)
|
2019-11-14 12:51:21 +01:00
|
|
|
|
|
|
|
(provide 'programming/misc)
|
|
|
|
;;; misc.el ends here
|