Moving to Doom Emacs!

This commit is contained in:
Derek Taylor
2019-12-16 20:22:57 -06:00
parent d4b4c33550
commit cc6249d812
3 changed files with 193 additions and 0 deletions

15
.doom.d/config.el Normal file
View File

@@ -0,0 +1,15 @@
;;; .doom.d/config.el -*- lexical-binding: t; -*-
;; Place your private configuration here
(setq doom-font (font-spec :family "Mononoki Nerd Font Mono" :size 15))
(setq doom-theme 'doom-dracula)
(def-package! highlight-indent-guides
:commands highlight-indent-guides-mode
:hook (prog-mode . highlight-indent-guides-mode)
:config
(setq highlight-indent-guides-method 'character
highlight-indent-guides-character ?\⇨
highlight-indent-guides-delay 0.01
highlight-indent-guides-responsive 'top
highlight-indent-guides-auto-enabled nil))