diff options
author | Leonardo Santiago <[email protected]> | 2024-05-12 12:38:01 -0300 |
---|---|---|
committer | Leonardo Santiago <[email protected]> | 2024-05-12 12:38:01 -0300 |
commit | 752244b5798650de878f8dcd1d52c1c813dc1a6e (patch) | |
tree | 142a2e161a8b137e31df16bda6ffb426bf206ee9 /modules/emacs | |
parent | 4f3efae46a91aae61e3d0d979670d388902d33a9 (diff) |
add mixrank back, change emacs theme and background alpha change
Diffstat (limited to 'modules/emacs')
-rw-r--r-- | modules/emacs/README.org | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/modules/emacs/README.org b/modules/emacs/README.org index 04fc1a7..b4d051a 100644 --- a/modules/emacs/README.org +++ b/modules/emacs/README.org @@ -29,7 +29,7 @@ You can also use it as a ~nixosModule~, in order to add additional packages like #+begin_src emacs-lisp :tangle yes (use-package modus-themes) ;; (use-package kanagawa-theme) -(load-theme 'wombat t) +(load-theme 'modus-operandi-tinted t) (set-face-attribute 'default nil :family "Iosevka Nerd Font" @@ -48,18 +48,6 @@ You can also use it as a ~nixosModule~, in order to add additional packages like version-control t) #+end_src -** Background opacity -Remove background on terminal, and add transparency on GUI -#+begin_src emacs-lisp :tangle yes -(defun on-after-init () - (unless (display-graphic-p (selected-frame)) - (set-face-background 'default "unspecified-bg" (selected-frame)))) - -(add-hook 'window-setup-hook 'on-after-init) -(set-frame-parameter nil 'alpha-background 95) -(add-to-list 'default-frame-alist '(alpha-background . 95)) -#+end_src - * Utility ** All the Icons Works through nixosModules. |