Refactor doom-theme init
This commit is contained in:
parent
61d9170971
commit
1df3be22cf
2 changed files with 6 additions and 2 deletions
3
Cask
3
Cask
|
@ -33,14 +33,15 @@
|
|||
|
||||
;; UI --- core/core-ui.el
|
||||
(depends-on "beacon")
|
||||
(depends-on "doom-theme" :git "https://github.com/hlissner/emacs-doom-theme")
|
||||
(depends-on "highlight-indentation" :git "https://github.com/localredhead/Highlight-Indentation-for-Emacs")
|
||||
(depends-on "highlight-numbers")
|
||||
(depends-on "nlinum")
|
||||
(depends-on "powerline")
|
||||
(depends-on "rainbow-delimiters")
|
||||
(depends-on "rainbow-mode")
|
||||
(depends-on "stripe-buffer")
|
||||
(depends-on "visual-fill-column")
|
||||
(depends-on "powerline")
|
||||
|
||||
;; Evil --- core/core-evil.el
|
||||
(depends-on "evil")
|
||||
|
|
|
@ -40,7 +40,6 @@
|
|||
(lambda (_) (if (doom/get-real-buffers) (y-or-n-p "› Quit?") t) t))
|
||||
|
||||
;; Initialize UI
|
||||
(load-theme doom-current-theme t)
|
||||
(tooltip-mode -1) ; show tooltips in echo area
|
||||
(if (not window-system)
|
||||
(menu-bar-mode -1)
|
||||
|
@ -94,6 +93,10 @@
|
|||
;; Plugins
|
||||
;;
|
||||
|
||||
(use-package doom-theme
|
||||
:config
|
||||
(load-theme doom-current-theme t))
|
||||
|
||||
(use-package beacon
|
||||
:config
|
||||
(beacon-mode +1)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue