mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Add modules/ui/doom
This commit is contained in:
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")
|
||||
|
Reference in New Issue
Block a user