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 | |
parent | 4b48d4455ba145430419f2f4c8fe25d24253d747 (diff) |
emacs: themes
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.emacs.d/custom.el | 3 | ||||
-rw-r--r-- | emacs/.emacs.d/init.el | 14 |
2 files changed, 13 insertions, 4 deletions
diff --git a/emacs/.emacs.d/custom.el b/emacs/.emacs.d/custom.el index 83d204c..c3fb5fa 100644 --- a/emacs/.emacs.d/custom.el +++ b/emacs/.emacs.d/custom.el @@ -3,10 +3,9 @@ ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. - '(custom-enabled-themes (quote (dracula))) '(custom-safe-themes (quote - ("a41b81af6336bd822137d4341f7e16495a49b06c180d6a6417bf9fd1001b6d2b" "63df625509cec7b2b7deba1d48ef07ffbee99c735a95d130ad9d1fc3df8b9a34" "55c2069e99ea18e4751bd5331b245a2752a808e91e09ccec16eb25dadbe06354" "5f1bd7f67dc1598977e69c6a0aed3c926f49581fdf395a6246f9bc1df86cb030" "6731049cee8f7cbd542d7b3e1c551f3fab716a92119bd7c77f0bd1ef20849fb8" "28caf31770f88ffaac6363acfda5627019cac57ea252ceb2d41d98df6d87e240" "947190b4f17f78c39b0ab1ea95b1e6097cc9202d55c73a702395fc817f899393" "35b0b0e531731e270708ddb342dc2e576a31fb298dcbc56a206596a43afac54f" "274fa62b00d732d093fc3f120aca1b31a6bb484492f31081c1814a858e25c72e" default))) + ("13fa7a304bd53aa4c0beec4c25c4f811de499bce9deb326798265ed0015b3b78" "a41b81af6336bd822137d4341f7e16495a49b06c180d6a6417bf9fd1001b6d2b" "63df625509cec7b2b7deba1d48ef07ffbee99c735a95d130ad9d1fc3df8b9a34" "55c2069e99ea18e4751bd5331b245a2752a808e91e09ccec16eb25dadbe06354" "5f1bd7f67dc1598977e69c6a0aed3c926f49581fdf395a6246f9bc1df86cb030" "6731049cee8f7cbd542d7b3e1c551f3fab716a92119bd7c77f0bd1ef20849fb8" "28caf31770f88ffaac6363acfda5627019cac57ea252ceb2d41d98df6d87e240" "947190b4f17f78c39b0ab1ea95b1e6097cc9202d55c73a702395fc817f899393" "35b0b0e531731e270708ddb342dc2e576a31fb298dcbc56a206596a43afac54f" "274fa62b00d732d093fc3f120aca1b31a6bb484492f31081c1814a858e25c72e" default))) '(package-selected-packages (quote (org-ql org-super-agenda org-pomodoro org doom-themes counsel-projectile ivy slime neotree magit all-the-icons centaur-tabs company-quickhelp lsp-ui yasnippet typescript-mode company-lsp company-posframe company-c-headers telephone-line dracula-theme evil use-package)))) 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 |