diff options
author | Bobby Bingham <koorogi@koorogi.info> | 2020-05-03 21:30:03 -0500 |
---|---|---|
committer | Bobby Bingham <koorogi@koorogi.info> | 2021-02-06 10:39:37 -0600 |
commit | cf2cf240a8f089227b4d7834b98a28949bf72526 (patch) | |
tree | 7b841cb616604e86e0032d4c384d7b82ae126db7 /emacs/.emacs.d/init.el | |
parent | 4b48d4455ba145430419f2f4c8fe25d24253d747 (diff) |
emacs: themes
Diffstat (limited to 'emacs/.emacs.d/init.el')
-rw-r--r-- | emacs/.emacs.d/init.el | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el index baca500..644fd58 100644 --- a/emacs/.emacs.d/init.el +++ b/emacs/.emacs.d/init.el @@ -88,7 +88,7 @@ ;; --- FILE TREE --- (use-package neotree :config - (setq neo-theme (if (display-graphic-p) 'icons 'arrow)) + ;;(setq neo-theme (if (display-graphic-p) 'icons 'arrow)) :bind ("<f8>" . neotree-toggle)) @@ -130,6 +130,16 @@ (use-package company-lsp :commands company-lsp) +;; --- THEME --- +(use-package doom-themes + :config + (setq doom-themes-enable-bold t + doom-themes-enable-italic t) + (load-theme 'doom-palenight t) + (doom-themes-visual-bell-config) + (doom-themes-neotree-config) + (doom-themes-org-config)) + ;; --- TODO --- ;;(require 'undo-tree) @@ -160,7 +170,7 @@ ;; --- GENERAL PREFERENCES --- (setq-default ;; --- THEME CONFIGURATION --- - dracula-enlarge-headings nil + ;;dracula-enlarge-headings nil ;; -- TABS AND INDENTATION -- ;; Set tab stops to every four spaces |