diff options
author | John Turner <jturner.usa@gmail.com> | 2022-12-22 21:23:54 -0500 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2022-12-22 21:42:06 -0500 |
commit | 1b995bef5ebb9d90afebf09fecd510b675417860 (patch) | |
tree | 5dd0c6c9bb6c79048789181581c413e91baf4704 /init.el | |
parent | 1249e9080daf981f56f00a4ec10a193e2bd1dcdf (diff) | |
download | emacs.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.el | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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) |