mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-11-09 22:10:48 -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)
|
||||
|
||||
;; 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
|
||||
|
||||
|
|
Loading…
Reference in a new issue