summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2022-12-22 21:23:54 -0500
committerJohn Turner <jturner.usa@gmail.com>2022-12-22 21:42:06 -0500
commit1b995bef5ebb9d90afebf09fecd510b675417860 (patch)
tree5dd0c6c9bb6c79048789181581c413e91baf4704 /init.el
parent1249e9080daf981f56f00a4ec10a193e2bd1dcdf (diff)
downloademacs.d-1b995bef5ebb9d90afebf09fecd510b675417860.tar.gz
deleted old themes, created new badgar theme
Themes in Emacs can be loaded on top of each other, allowing to easily customize or override aspects of other themes, which I did not realize at the time of creating the custom-wombat theme! Badgar adds a few small tweaks, like setting highlight-indentation colors, making the fringe match the background, and highlighting the current line when using line-number-mode.
Diffstat (limited to 'init.el')
-rw-r--r--init.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/init.el b/init.el
index 54a4943..5f75be2 100644
--- a/init.el
+++ b/init.el
@@ -69,8 +69,6 @@
(require 'man-completion)
-(when (file-exists-p (file-name-concat custom-theme-directory "custom-wombat-theme.el"))
- (load-theme 'custom-wombat t))
(when (file-exists-p custom-file)
(load custom-file))
@@ -84,3 +82,6 @@
(scroll-bar-mode 0)
(tool-bar-mode 0)
(tooltip-mode 0)
+
+(load-theme 'wombat)
+(load-theme 'badger t)