Add basic support for Go.
This commit is contained in:
parent
360c647569
commit
2159931d2a
3
init.el
3
init.el
|
@ -1,6 +1,6 @@
|
||||||
;;; init.el --- tastytea's Emacs init file. -*- lexical-binding: t; -*-
|
;;; 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:
|
;;; Commentary:
|
||||||
;; Requires at least Emacs 26. Most of it will probably work with Emacs 24 and
|
;; Requires at least Emacs 26. Most of it will probably work with Emacs 24 and
|
||||||
|
@ -40,6 +40,7 @@
|
||||||
|
|
||||||
(require 'programming/common)
|
(require 'programming/common)
|
||||||
(require 'programming/c++)
|
(require 'programming/c++)
|
||||||
|
(require 'programming/misc)
|
||||||
|
|
||||||
(require 'net/server)
|
(require 'net/server)
|
||||||
(require 'net/client)
|
(require 'net/client)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
;;; appearance.el --- Configure appearance. -*- lexical-binding: t; -*-
|
;;; 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:
|
;;; Commentary:
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
;;; common.el --- Common programming settings. -*- lexical-binding: t; -*-
|
;;; 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:
|
;;; Commentary:
|
||||||
|
|
||||||
|
|
14
init/programming/misc.el
Normal file
14
init/programming/misc.el
Normal 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
|
Loading…
Reference in New Issue
Block a user