Add basic support for Go.

This commit is contained in:
tastytea 2019-11-14 12:51:21 +01:00
parent 360c647569
commit 2159931d2a
4 changed files with 18 additions and 3 deletions

View File

@ -1,6 +1,6 @@
;;; init.el --- tastytea's Emacs init file. -*- lexical-binding: t; -*-
;; Time-stamp: <2019-11-04T19:42:29+00:00>
;; Time-stamp: <2019-11-14T11:49:41+00:00>
;;; Commentary:
;; Requires at least Emacs 26. Most of it will probably work with Emacs 24 and
@ -40,6 +40,7 @@
(require 'programming/common)
(require 'programming/c++)
(require 'programming/misc)
(require 'net/server)
(require 'net/client)

View File

@ -1,6 +1,6 @@
;;; appearance.el --- Configure appearance. -*- lexical-binding: t; -*-
;; Time-stamp: <2019-11-09T21:17:00+00:00>
;; Time-stamp: <2019-11-09T21:25:20+00:00>
;;; Commentary:

View File

@ -1,6 +1,6 @@
;;; common.el --- Common programming settings. -*- lexical-binding: t; -*-
;; Time-stamp: <2019-11-09T18:48:38+00:00>
;; Time-stamp: <2019-11-09T21:31:01+00:00>
;;; Commentary:

14
init/programming/misc.el Normal file
View File

@ -0,0 +1,14 @@
;;; 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