diff options
Diffstat (limited to 'blendoit')
| -rw-r--r-- | blendoit/blendoit-init.org | 25 | ||||
| -rw-r--r-- | blendoit/blendoit-init.pdf | bin | 219320 -> 216686 bytes | |||
| -rw-r--r-- | blendoit/themes/blendoit-light-theme.el | 18 | 
3 files changed, 21 insertions, 22 deletions
| diff --git a/blendoit/blendoit-init.org b/blendoit/blendoit-init.org index bd60a96..e5df446 100644 --- a/blendoit/blendoit-init.org +++ b/blendoit/blendoit-init.org @@ -539,8 +539,10 @@ Get inspiration from ~ibuffer-sidebar~ and create a better sidebar.  Oí, Jason! +Not needed in 27.1? +  #+BEGIN_SRC emacs-lisp -  (use-package json-mode) +;  (use-package json-mode)  #+END_SRC  ** ~magit~ @@ -604,14 +606,12 @@ This enables us to better manage our =.git= projects.  #+BEGIN_SRC emacs-lisp  (show-paren-mode 1) +(setq show-paren-delay 0) -  (use-package smartparens -    :config -    (add-hook 'prog-mode-hook #'smartparens-mode)) +(use-package rainbow-delimiters + :config (add-hook 'prog-mode-hook #'rainbow-delimiters-mode)) -  (use-package rainbow-delimiters -    :config -    (add-hook 'prog-mode-hook #'rainbow-delimiters-mode)) +(electric-pair-mode)  #+END_SRC  * Cosmetics @@ -674,9 +674,9 @@ These settings affect the first and subsequent frames spawned by Emacs in  GNU/Linux. Frame transparency increases when focus is lost.  #+BEGIN_SRC emacs-lisp -;  (if (and (display-graphic-p) (string-equal system-type "gnu/linux")) -;      ((set-frame-parameter (selected-frame) 'alpha '(85 . 50)) -;       (add-to-list 'default-frame-alist '(alpha . (85 . 50))))) +  (when (and (display-graphic-p) (string-equal system-type "gnu/linux")) +    (set-frame-parameter (selected-frame) 'alpha '(90 . 50)) +    (add-to-list 'default-frame-alist '(alpha . (60 . 50))))  #+END_SRC  ** Theme @@ -685,8 +685,8 @@ My custom themes.  #+BEGIN_SRC emacs-lisp  (setq custom-theme-directory "~/.emacs.d/blendoit/themes/") -; (load-theme 'blendoit-light) -(load-theme 'blendoit-dark) +(load-theme 'blendoit-light) +; (load-theme 'blendoit-dark)  #+END_SRC  *** ~blendoit-light~ @@ -725,7 +725,6 @@ Disable minibuffer scroll bar.  #+BEGIN_SRC emacs-lisp  (set-window-scroll-bars (minibuffer-window) nil nil) -; (set-window-scroll-bars (ibuffer-sidebar-window) nil nil)  #+END_SRC  ** Clean up menus diff --git a/blendoit/blendoit-init.pdf b/blendoit/blendoit-init.pdfBinary files differ index 9699eae..eb8e36f 100644 --- a/blendoit/blendoit-init.pdf +++ b/blendoit/blendoit-init.pdf diff --git a/blendoit/themes/blendoit-light-theme.el b/blendoit/themes/blendoit-light-theme.el index c83ed43..ae3f14f 100644 --- a/blendoit/themes/blendoit-light-theme.el +++ b/blendoit/themes/blendoit-light-theme.el @@ -1,5 +1,5 @@  (deftheme blendoit-light -  "Created 2020-08-15.") +  "Created 2020-08-16.")  (custom-theme-set-faces   'blendoit-light @@ -42,9 +42,9 @@   '(query-replace ((t (:inherit (isearch)))))   '(org-formula ((t (:inherit org-table))))   '(org-meta-line ((t (:foreground "steel blue" :family "Hermit")))) - '(org-document-title ((t (:weight bold :height 2.0)))) + '(org-document-title ((t (:weight bold :height 2.0 :family "Hack"))))   '(org-footnote ((t (:inherit link)))) - '(org-tag ((t (:weight bold :underline (:color nil :style nil) :inherit org-meta-line)))) + '(org-tag ((t (:foreground "steel blue" :underline t :weight bold :family "Hermit"))))   '(org-document-info-keyword ((t (:inherit org-meta-line))))   '(org-code ((t (:background "light grey" :foreground "black"))))   '(org-checkbox-statistics-todo ((t (:foreground "tomato" :inherit org-checkbox)))) @@ -54,14 +54,14 @@   '(cursor ((t (:background "red"))))   '(org-document-info ((t (:weight bold))))   '(fixed-pitch ((t (:family "Hack")))) - '(org-table ((t (:inherit fixed-pitch :foreground "dark slate gray" :box (:line-width 1 :color "light slate gray"))))) + '(org-table ((t (:foreground "SteelBlue" :inherit fixed-pitch))))   '(org-block ((t (:family "Hermit"))))   '(org-special-keyword ((t (:inherit org-meta-line)))) - '(org-level-1 ((t (:foreground "dim gray" :weight bold :height 1.6)))) - '(org-level-2 ((t (:foreground "dark gray" :weight bold :height 1.4)))) - '(org-level-3 ((t (:foreground "gray" :weight bold :height 1.2)))) - '(org-level-4 ((t (:foreground "light gray" :weight bold :height 1.1)))) - '(org-level-5 ((t (:foreground "gainsboro" :weight bold :height 1.0)))) + '(org-level-1 ((t (:foreground "dim gray" :weight bold :height 1.6 :family "Hack")))) + '(org-level-2 ((t (:foreground "dark gray" :weight bold :height 1.4 :family "Hack")))) + '(org-level-3 ((t (:foreground "gray" :weight bold :height 1.2 :family "Hack")))) + '(org-level-4 ((t (:foreground "light gray" :weight bold :height 1.1 :family "Hack")))) + '(org-level-5 ((t (:foreground "gainsboro" :weight bold :height 1.0 :family "Hack"))))   '(org-level-6 ((t (:inherit org-level-5))))   '(org-level-7 ((t (:inherit org-level-5))))   '(org-level-8 ((t (:inherit org-level-5)))) | 
