add go-mode

This commit is contained in:
opFez 2020-12-10 17:05:32 +01:00
parent 02afbde525
commit e994d24c39
2 changed files with 6 additions and 3 deletions

View File

@ -10,7 +10,7 @@
(scroll-bar-mode 0)
;; Appearance
(set-frame-font "Terminus 12")
(set-frame-font "DejaVu Sans Mono 10")
(set-face-italic 'font-lock-comment-face nil) ; disable italics
; theme set in packages.el
(global-linum-mode)
@ -72,8 +72,7 @@
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(package-selected-packages
(quote
(tao-themes tao-theme almost-mono-themes use-package))))
'(go-mode tao-themes tao-theme almost-mono-themes use-package)))
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.

View File

@ -26,3 +26,7 @@
:ensure t
:init
(add-hook 'haskell-mode-hook 'interactive-haskell-mode))
(use-package go-mode
:ensure t
)