diff options
author | JSDurand <mmemmew@gmail.com> | 2020-12-22 20:35:51 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2020-12-22 20:35:51 +0800 |
commit | 7c16649462beca822c0b72438a2b20e77a261985 (patch) | |
tree | c24981bb691e53fa0a2b0089a40de5938b0fb6a4 /theme.el |
Initial commit
Diffstat (limited to 'theme.el')
-rw-r--r-- | theme.el | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/theme.el b/theme.el new file mode 100644 index 0000000..0428059 --- /dev/null +++ b/theme.el @@ -0,0 +1,44 @@ +;;; theme + +(setq modus-vivendi-theme-slanted-constructs t + modus-vivendi-theme-bold-constructs t + ;; modus-vivendi-theme-3d-modeline t + modus-vivendi-theme-mode-line '3d + modus-vivendi-theme-diffs nil + modus-vivendi-theme-completions nil + modus-vivendi-theme-org-blocks 'rainbow + modus-vivendi-theme-rainbow-org-src-blocks t + modus-vivendi-theme-variable-pitch-headings t + modus-vivendi-theme-headings '((t . rainbow)) + ;; modus-vivendi-theme-rainbow-headings t + ;; modus-vivendi-theme-section-headings t + modus-vivendi-theme-scale-headings t + modus-vivendi-theme-scale-1 1.05 + modus-vivendi-theme-scale-2 1.1 + modus-vivendi-theme-scale-3 1.15 + modus-vivendi-theme-scale-4 1.2 + modus-vivendi-theme-scale-5 1.3) + +(setq modus-operandi-theme-slanted-constructs t + modus-operandi-theme-bold-constructs t + ;; modus-operandi-theme-3d-modeline t + modus-operandi-theme-mode-line '3d + modus-operandi-theme-diffs nil + modus-operandi-theme-completions nil + modus-operandi-theme-org-blocks 'rainbow + modus-operandi-theme-rainbow-org-src-blocks t + modus-operandi-theme-variable-pitch-headings t + modus-operandi-theme-headings '((t . rainbow)) + ;; modus-operandi-theme-rainbow-headings t + ;; modus-operandi-theme-section-headings t + modus-operandi-theme-scale-headings t + modus-operandi-theme-scale-1 1.05 + modus-operandi-theme-scale-2 1.1 + modus-operandi-theme-scale-3 1.15 + modus-operandi-theme-scale-4 1.2 + modus-operandi-theme-scale-5 1.3) + +(add-to-list 'load-path (expand-file-name "protesilaos/modus-themes" package-dir)) + +(require 'modus-vivendi-theme) +(load-theme 'modus-vivendi t) |