mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-11-09 14:00:47 -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
|
;; :config
|
||||||
;; (load-theme 'everforest-hard-dark t))
|
;; (load-theme 'everforest-hard-dark t))
|
||||||
|
|
||||||
(use-package gruvbox-theme
|
;; (use-package gruvbox-theme
|
||||||
:config
|
;; :config
|
||||||
(load-theme 'gruvbox-dark-soft t))
|
;; (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
|
;; Help distinguish work buffers from others like sidebars and terminal
|
||||||
(use-package solaire-mode
|
(use-package solaire-mode
|
||||||
|
@ -345,7 +348,9 @@
|
||||||
|
|
||||||
;; Golang
|
;; Golang
|
||||||
|
|
||||||
(use-package go-mode)
|
(use-package go-mode
|
||||||
|
:config
|
||||||
|
(add-hook 'before-save-hook #'lsp-organize-imports))
|
||||||
|
|
||||||
;; Java
|
;; Java
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue