diff options
author | Franck Cuny <franck@fcuny.net> | 2020-12-09 18:15:56 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2020-12-09 18:15:56 -0800 |
commit | 5c0589b2c34c4a6e6ea118b18c8798471c015cc1 (patch) | |
tree | 6b6aa891d027fde2fa8c807cc94ba63353365d5b | |
parent | emacs: add binding for lsp's imenu (diff) | |
download | emacs.d-5c0589b2c34c4a6e6ea118b18c8798471c015cc1.tar.gz |
emacs: use modus-themes (light version)
The contrast is pretty good and the customization are also pretty.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-ui.el | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/emacs.d/custom/fcuny-ui.el b/emacs.d/custom/fcuny-ui.el index 7559450..289b861 100644 --- a/emacs.d/custom/fcuny-ui.el +++ b/emacs.d/custom/fcuny-ui.el @@ -15,9 +15,32 @@ :config (menu-bar-mode -1)) -(use-package acme-theme +(use-package modus-themes :ensure t - :config (load-theme 'acme t)) + :init + (use-package modus-operandi-theme) + (use-package modus-vivendi-theme) + :config (load-theme 'modus-operandi t) + :custom + (modus-themes-bold-constructs t) + (modus-themes-fringes nil) + (modus-themes-slanted-constructs t) + (modus-themes-mode-line '3d) + (modus-themes-syntax nil) + (Modus-themes-intense-hl-line nil) + (modus-themes-paren-match 'intense-bold) + (modus-themes-links 'neutral-underline) + (modus-themes-prompts 'subtle) + (modus-themes-completions nil) + (modus-themes-region 'bg-only-no-extend) + (modus-themes-diffs 'bg-only) + (modus-themes-variable-pitch-headings t) + (modus-themes-scale-headings t) + (modus-themes-scale-1 1.1) + (modus-themes-scale-2 1.15) + (modus-themes-scale-3 1.21) + (modus-themes-scale-4 1.27) + (modus-themes-scale-5 1.33)) (use-package diminish :ensure t) |