Add go-mode, load theme from custom path

This commit is contained in:
Andrew Scott 2022-07-30 23:10:33 -04:00
parent abbe2b0915
commit 58a9f69e79
Signed by: a
GPG key ID: 3EB62D0BBB8DB381

View file

@ -125,9 +125,12 @@
;; :config
;; (load-theme 'everforest-hard-dark t))
(use-package gruvbox-theme
:config
(load-theme 'gruvbox-dark-soft t))
;; (use-package gruvbox-theme
;; :config
;; (load-theme 'gruvbox-dark-soft t))
(add-to-list 'custom-theme-load-path "~/.cache/emacs/custom/everforest-theme")
(load-theme 'everforest-hard-dark t)
;; Help distinguish work buffers from others like sidebars and terminal
(use-package solaire-mode
@ -345,7 +348,9 @@
;; Golang
(use-package go-mode)
(use-package go-mode
:config
(add-hook 'before-save-hook #'lsp-organize-imports))
;; Java