Add modules/ui/doom
This commit is contained in:
parent
40080c47a9
commit
153f54b2d6
4 changed files with 33 additions and 0 deletions
0
modules/ui/doom/+dashboard.el
Normal file
0
modules/ui/doom/+dashboard.el
Normal file
0
modules/ui/doom/+modeline.el
Normal file
0
modules/ui/doom/+modeline.el
Normal file
26
modules/ui/doom/config.el
Normal file
26
modules/ui/doom/config.el
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
|
||||||
|
(defvar +doom-theme 'doom-one
|
||||||
|
"The color theme currently in use.")
|
||||||
|
|
||||||
|
(defvar +doom-dashboard t
|
||||||
|
"")
|
||||||
|
|
||||||
|
(defvar +doom-modeline t "Whether or not to enable the modeline")
|
||||||
|
|
||||||
|
; (when +doom-dashboard (load! +dashboard))
|
||||||
|
; (when +doom-modeline (load! +modeline))
|
||||||
|
|
||||||
|
;;
|
||||||
|
(after! doom-themes
|
||||||
|
(setq doom-neotree-enable-variable-pitch t
|
||||||
|
doom-neotree-file-icons 'simple
|
||||||
|
doom-neotree-line-spacing 3)
|
||||||
|
|
||||||
|
(load-theme +doom-theme t)
|
||||||
|
|
||||||
|
;; brighter source buffers
|
||||||
|
(add-hook 'find-file-hook 'doom-buffer-mode)
|
||||||
|
|
||||||
|
;; neotree + nlinum integration
|
||||||
|
(require 'doom-neotree)
|
||||||
|
(require 'doom-nlinum))
|
7
modules/ui/doom/packages.el
Normal file
7
modules/ui/doom/packages.el
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
;;; ui/doom/packages.el
|
||||||
|
|
||||||
|
(package! doom-themes
|
||||||
|
:ensure nil
|
||||||
|
:demand t
|
||||||
|
:load-path "~/work/plugins/emacs-doom-theme")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue