From 96d038c44a1ef26892adf4b775d1e2efe9e7b44b Mon Sep 17 00:00:00 2001 From: JSDurand Date: Sat, 16 Jan 2021 14:04:07 +0800 Subject: The first stable version Fixes: Avoid adding suffix-link repeatedly * embark-conf.el ("embark"): Use view-mode instead of view-file * init.el (load-after-function): Modify the macro so that it no longer redefines built-in functions. (global-map): ("view-conf.el"): Rename view-functions.el to view-conf.el * suffix tree/generalized-suffix-tree.el (gst-edge-length): (gst-add-suffix-link): (gst-canonize): (gst-extend-tree): (gst-build-for-strs): Fixed the bug. * suffix tree/gst debugging platform.txt (strs): Add a new debugging file * suffix tree/gst test ground (2).txt (strs): Do more debugging * tab-conf.el (durand-switch-tab-dwim): Add my own dwim tab function. (global-map): Bind it to the global map. * theme.el Update the modus-themes. * view-conf.el Rename view-functions.el to view-conf.el. --- theme.el | 88 ++++++++++++++++++++++++++++++++++++++-------------------------- 1 file changed, 52 insertions(+), 36 deletions(-) (limited to 'theme.el') diff --git a/theme.el b/theme.el index 76eb03a..b60652c 100644 --- a/theme.el +++ b/theme.el @@ -1,43 +1,59 @@ ;;; 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-themes-bold-constructs t) +(setq modus-themes-slanted-constructs t) +(setq modus-themes-mode-line '3d) +(setq modus-themes-org-blocks 'grayscale) ; Try it out +(setq modus-themes-headings '((t . rainbow))) -(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) +(setq modus-themes-scale-headings t) +(setq modus-themes-scale-1 1.05) +(setq modus-themes-scale-2 1.1) +(setq modus-themes-scale-3 1.15) +(setq modus-themes-scale-4 1.2) +(setq modus-themes-scale-5 1.3) + +(setq modus-themes-variable-pitch-headings t) (use-package "protesilaos/modus-themes" 'modus-vivendi-theme (load-theme 'modus-vivendi t)) +;;; Archives + +;; (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) -- cgit v1.2.3-18-g5258