Add modules/ui/doom

This commit is contained in:
Henrik Lissner 2017-01-17 00:20:59 -05:00
parent 40080c47a9
commit 153f54b2d6
4 changed files with 33 additions and 0 deletions

View file

View file

26
modules/ui/doom/config.el Normal file
View 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))

View file

@ -0,0 +1,7 @@
;;; ui/doom/packages.el
(package! doom-themes
:ensure nil
:demand t
:load-path "~/work/plugins/emacs-doom-theme")