Update go-mode config and theme loading

This commit is contained in:
Andrew Scott 2022-07-23 13:44:13 -04:00
parent 2e59b0d2ec
commit 866071ce88
Signed by: a
GPG key ID: 3EB62D0BBB8DB381

View file

@ -1,4 +1,4 @@
;; Disable package.el early so it won't start loading packages before init is loaded
; Disable package.el early so it won't start loading packages before init is loaded
(setq package-enable-at-startup nil)
;; No thanks
@ -123,11 +123,14 @@
;; :config
;; (load-theme 'atom-one-dark t))
(use-package everforest-hard-dark-theme
:straight (everforest-hard-dark-theme :type git :repo "https://git.sr.ht/~theorytoe/everforest-hard-dark-theme")
:config
(load-theme 'everforest-hard-dark t))
;; (use-package everforest
;; :straight (everforest-hard-dark-theme :type git :repo "https://git.sr.ht/~theorytoe/everforest-theme")
;; :config
;; (load-theme 'everforest-hard-dark t))
(add-to-list 'custom-theme-load-path "~/.cache/emacs/straight/build/everforest")
(load-theme 'everforest-hard-dark t)
;; Help distinguish work buffers from others like sidebars and terminal
(use-package solaire-mode
:init
@ -342,7 +345,9 @@
;; Golang
(use-package go-mode)
(use-package go-mode
:config
(add-hook 'before-save-hook #'lsp-organize-imports))
;; Java