diff options
-rw-r--r-- | smart-documents.org | 16 | ||||
-rw-r--r-- | themes/blendoit-light-theme.el | 8 |
2 files changed, 12 insertions, 12 deletions
diff --git a/smart-documents.org b/smart-documents.org index 1be6c6d..cafb288 100644 --- a/smart-documents.org +++ b/smart-documents.org @@ -716,15 +716,15 @@ with ~yasnippet~ to save us a ton of time with boilerplate text! #+NAME: company #+BEGIN_SRC emacs-lisp -; (add-hook 'after-init-hook 'global-company-mode) + (add-hook 'after-init-hook 'global-company-mode) #+END_SRC *** Delete all consecutive whitespaces -#+NAME: company +#+NAME: hungry-delete #+BEGIN_SRC emacs-lisp :tangle yes -(use-package hungry-delete) -(global-hungry-delete-mode) + (use-package hungry-delete) + (global-hungry-delete-mode) #+END_SRC ** Utilities @@ -1476,12 +1476,12 @@ document we are working on currently. (image-animate sd-icons-blue-ellipsis 0 t) #+END_SRC -**** Mode line +**** TODO Mode line #+NAME: mode-line-format -#+BEGIN_SRC emacs-lisp :tangle yes - (setq-default mode-line-format - (list +#+BEGIN_SRC emacs-lisp :tangle no + (setq mode-line-format + (list mode-line-modified '(:eval (list " " diff --git a/themes/blendoit-light-theme.el b/themes/blendoit-light-theme.el index 227e66a..7430c36 100644 --- a/themes/blendoit-light-theme.el +++ b/themes/blendoit-light-theme.el @@ -1,5 +1,5 @@ (deftheme blendoit-light - "Created 2020-11-21.") + "Created 2020-11-22.") (custom-theme-set-faces 'blendoit-light @@ -81,12 +81,12 @@ '(org-todo ((t (:background "coral" :foreground "white" :weight bold :height 1.4 :family "Hermit")))) '(org-done ((t (:background "forest green" :foreground "white" :weight bold :height 1.4 :family "hermit")))) '(org-tag ((t (:inherit link)))) - '(default ((t (:background "white" :foreground "black" :height 140 :family "Hack")))) '(erc-nick-default-face ((t (:inherit org-meta-line :weight bold)))) '(erc-timestamp-face ((t (:inherit org-meta-line)))) '(erc-notice-face ((t (:inherit shadow)))) '(erc-input-face ((t (:foreground "DarkOrchid4")))) - '(erc-action-face ((t (:slant italic :weight bold)))) - '(erc-button ((t (:inherit link))))) + '(erc-action-face ((t (:slant italic)))) + '(erc-button ((t (:inherit link)))) + '(default ((t (:background "white" :foreground "black" :height 140 :family "Hack"))))) (provide-theme 'blendoit-light) |