diff options
author | William Carroll <wpcarro@gmail.com> | 2020-01-17T10·21+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-01-17T10·56+0000 |
commit | 190686fee1ceae81b8bfdf5a17a30edcc85ee4b5 (patch) | |
tree | d0b0b6ce60c1edb5eda2d1e48d3ad68f9e935a41 /configs/shared/.emacs.d | |
parent | 2f41167a6f7210ecbfe4082b380a04d956c82e5e (diff) |
Suppress load-theme from confirming changes
I don't feel like the confirmation dialog adds much value.
Diffstat (limited to 'configs/shared/.emacs.d')
-rw-r--r-- | configs/shared/.emacs.d/wpc/colorscheme.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/shared/.emacs.d/wpc/colorscheme.el b/configs/shared/.emacs.d/wpc/colorscheme.el index 349d6f8e7e05..ba2b38cd838b 100644 --- a/configs/shared/.emacs.d/wpc/colorscheme.el +++ b/configs/shared/.emacs.d/wpc/colorscheme.el @@ -45,7 +45,7 @@ (defun colorscheme/set (theme) "Call `load-theme' with `THEME', ensuring that the line numbers are bright. There is no hook that I'm aware of to handle this more elegantly." - (load-theme theme) + (load-theme theme t) (prelude/set-line-number-color "#da5468")) (defun colorscheme/whitelist-set (colorscheme) |