mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-11-13 15:50:50 -05:00
Update go-mode config and theme loading
This commit is contained in:
parent
2e59b0d2ec
commit
866071ce88
1 changed files with 11 additions and 6 deletions
|
@ -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)
|
(setq package-enable-at-startup nil)
|
||||||
|
|
||||||
;; No thanks
|
;; No thanks
|
||||||
|
@ -123,10 +123,13 @@
|
||||||
;; :config
|
;; :config
|
||||||
;; (load-theme 'atom-one-dark t))
|
;; (load-theme 'atom-one-dark t))
|
||||||
|
|
||||||
(use-package everforest-hard-dark-theme
|
;; (use-package everforest
|
||||||
:straight (everforest-hard-dark-theme :type git :repo "https://git.sr.ht/~theorytoe/everforest-hard-dark-theme")
|
;; :straight (everforest-hard-dark-theme :type git :repo "https://git.sr.ht/~theorytoe/everforest-theme")
|
||||||
:config
|
;; :config
|
||||||
(load-theme 'everforest-hard-dark t))
|
;; (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
|
;; Help distinguish work buffers from others like sidebars and terminal
|
||||||
(use-package solaire-mode
|
(use-package solaire-mode
|
||||||
|
@ -342,7 +345,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