chore: go back to the dark theme
This commit is contained in:
parent
5d825446cc
commit
e92e803761
3 changed files with 10 additions and 8 deletions
|
|
@ -27,10 +27,12 @@
|
||||||
;; spawn another if want one.
|
;; spawn another if want one.
|
||||||
(setq vterm-kill-buffer-on-exit t))
|
(setq vterm-kill-buffer-on-exit t))
|
||||||
|
|
||||||
|
;; TODO(ade): Add the face into the base16 theme fork
|
||||||
(use-package auto-dim-other-buffers
|
(use-package auto-dim-other-buffers
|
||||||
:config (auto-dim-other-buffers-mode)
|
:config (auto-dim-other-buffers-mode)
|
||||||
:custom-face
|
:custom-face
|
||||||
(auto-dim-other-buffers-face ((t (:background "#e0e0e0")))))
|
;;(auto-dim-other-buffers-face ((t (:background "#e0e0e0"))))) ;; For light theme
|
||||||
|
(auto-dim-other-buffers-face ((t (:background "#282828"))))) ;; For dark theme
|
||||||
|
|
||||||
(unless (display-graphic-p)
|
(unless (display-graphic-p)
|
||||||
(use-package tmux-pane
|
(use-package tmux-pane
|
||||||
|
|
|
||||||
|
|
@ -41,8 +41,8 @@ just in in the current buffer."
|
||||||
;; See: https://github.com/belak/base16-emacs/issues/73#issuecomment-721942335
|
;; See: https://github.com/belak/base16-emacs/issues/73#issuecomment-721942335
|
||||||
(setq base16-theme-256-color-source 'base16-shell)
|
(setq base16-theme-256-color-source 'base16-shell)
|
||||||
(setq base16-distinct-fringe-background nil)
|
(setq base16-distinct-fringe-background nil)
|
||||||
(load-theme 'base16-tomorrow t t)
|
(load-theme 'base16-tomorrow-night t t)
|
||||||
(enable-theme 'base16-tomorrow))
|
(enable-theme 'base16-tomorrow-night))
|
||||||
|
|
||||||
(use-package all-the-icons)
|
(use-package all-the-icons)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,13 +20,13 @@
|
||||||
default = current
|
default = current
|
||||||
|
|
||||||
[pager]
|
[pager]
|
||||||
diff = delta --light
|
diff = delta
|
||||||
log = delta --light
|
log = delta
|
||||||
reflog = delta --light
|
reflog = delta
|
||||||
show = delta --light
|
show = delta
|
||||||
|
|
||||||
[interactive]
|
[interactive]
|
||||||
diffFilter = delta --light --color-only
|
diffFilter = delta --color-only
|
||||||
|
|
||||||
[delta]
|
[delta]
|
||||||
line-numbers = true
|
line-numbers = true
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue