refactor(emacs): remove doom-themes and to full base16-themes
This would switch between 'doom-tomorrow' for use with the GUI and
'base16-tomorrow' when using the terminal. Previously the base16 themes has some
issues with GUI emacs and doom was much better. However, since a913143ee when I
forked base16 I have been making small tweaks and don't use the doom themes any
more.
This is now time to remove them and go full base16
This commit is contained in:
parent
70b3d16a4b
commit
66bfdd39b7
1 changed files with 1 additions and 13 deletions
|
|
@ -33,17 +33,6 @@ just in in the current buffer."
|
|||
;; Set the default font size when emacs starts
|
||||
(aa/set-font 120)
|
||||
|
||||
(use-package doom-themes
|
||||
:init
|
||||
(load-theme 'doom-tomorrow-day t t)
|
||||
(when (display-graphic-p)
|
||||
(enable-theme 'doom-tomorrow-day))
|
||||
:config
|
||||
(setq doom-themes-enable-bold t
|
||||
doom-themes-enable-italic t)
|
||||
(doom-themes-neotree-config)
|
||||
(doom-themes-org-config))
|
||||
|
||||
(use-package base16-theme
|
||||
:quelpa (aa-base16-theme :fetcher github :repo "AdeAttwood/base16-emacs")
|
||||
:init
|
||||
|
|
@ -53,8 +42,7 @@ just in in the current buffer."
|
|||
(setq base16-theme-256-color-source 'base16-shell)
|
||||
(setq base16-distinct-fringe-background nil)
|
||||
(load-theme 'base16-tomorrow t t)
|
||||
(unless (display-graphic-p)
|
||||
(enable-theme 'base16-tomorrow)))
|
||||
(enable-theme 'base16-tomorrow))
|
||||
|
||||
(use-package all-the-icons)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue