diff --git a/init.el b/init.el index d6f4fd8..39dd2fc 100644 --- a/init.el +++ b/init.el @@ -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. diff --git a/packages.el b/packages.el index 1f9d830..daa56df 100644 --- a/packages.el +++ b/packages.el @@ -26,3 +26,7 @@ :ensure t :init (add-hook 'haskell-mode-hook 'interactive-haskell-mode)) + +(use-package go-mode + :ensure t +)