mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-12-22 09:53:10 -05:00
Add go-mode, load theme from custom path
This commit is contained in:
parent
abbe2b0915
commit
58a9f69e79
1 changed files with 10 additions and 5 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue