diff options
author | mms <michal@sapka.me> | 2024-06-13 16:56:56 +0200 |
---|---|---|
committer | mms <michal@sapka.me> | 2024-06-13 16:56:56 +0200 |
commit | a6f933fe524f544ec02afe9bd08a1c8ee909c784 (patch) | |
tree | 49d24b95ffdab891b1e9442d045c192276814568 /mms-gui.org | |
parent | 11760041c7ebf7301e37f07e1e1a78bbdcc50a87 (diff) |
feat: tidy up
Diffstat (limited to 'mms-gui.org')
-rw-r--r-- | mms-gui.org | 28 |
1 files changed, 11 insertions, 17 deletions
diff --git a/mms-gui.org b/mms-gui.org index 9f70ad0..c26ab70 100644 --- a/mms-gui.org +++ b/mms-gui.org @@ -12,7 +12,7 @@ #+EXPORT_FILE_NAME: gui Here I set up how emacs looks when in GUI mode. - +# * Generic thingies Let's start with some basic settings. @@ -74,22 +74,22 @@ All I know is that orange is a fruit, and not a color. This is 1:1 copy of what [[https://howardabrams.com/hamacs/ha-display.html#orgb97059f][Howard Abrams]] uses. #+begin_src emacs-lisp - (use-package color-theme-sanityinc-tomorrow + (use-package ef-themes :ensure t) + (setq ef-themes-mixed-fonts t + ef-themes-variable-pitch-ui t) + + (setq mms-bright-theme 'ef-spring + mms-dark-theme 'ef-autumn) + (defun mms-dark-room-mode() (interactive) - (load-theme 'sanityinc-tomorrow-night t) - (set-face-attribute 'region nil :background "#000096") - (set-face-attribute 'mode-line nil :background "black") - (set-face-attribute 'mode-line-inactive nil :background "#444444")) + (load-theme mms-dark-theme t)) (defun mms-light-room-mode () (interactive) - (load-theme 'sanityinc-tomorrow-day t) - (set-face-attribute 'region nil :background "orange1") - (set-face-attribute 'mode-line nil :background "#cccccc") - (set-face-attribute 'mode-line-inactive nil :background "#888888")) + (load-theme mms-bright-theme t)) #+end_src * Auto-setup @@ -115,18 +115,12 @@ Lets auto enable those on Emacs start By default, all devices run in external-monitor mode, so I will call respective function in local configs. #+begin_src emacs-lisp - (with-eval-after-load 'color-theme-sanityinc-tomorrow + (with-eval-after-load 'ef-themes (if mms-is-voyager (mms-default-voyager-mode) (mms-default-mac-mode))) #+end_src * Org-mode -First of all, let's disable presenting emphasis markers - -#+begin_src emacs-lisp - (setq org-hide-emphasis-markers t) -#+end_src - After that - I don't need line numbers #+begin_src emacs-lisp |