diff options
author | Leonardo Santiago <[email protected]> | 2024-06-25 20:59:00 -0300 |
---|---|---|
committer | Leonardo Santiago <[email protected]> | 2024-06-25 20:59:00 -0300 |
commit | 5812d7b29e056649d2b8761d3b5eae9f22a853ef (patch) | |
tree | 8c2bdc6e092082004f17e5fc98676e9dfde6605f /modules | |
parent | 94e28dca93f8481715728b006943a791fdafda9e (diff) |
update stuff
Diffstat (limited to 'modules')
-rw-r--r-- | modules/emacs/README.org | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/modules/emacs/README.org b/modules/emacs/README.org index 685c15f..4e14603 100644 --- a/modules/emacs/README.org +++ b/modules/emacs/README.org @@ -33,10 +33,10 @@ You can also use it as a ~nixosModule~, in order to add additional packages like ;; (use-package kanagawa-theme) (load-theme 'modus-operandi-tinted t) -(set-face-attribute 'default nil - :family "Iosevka Nerd Font" - :width 'normal - :weight 'normal) +(add-hook 'after-make-frame-functions + (lambda (frame) + (select-frame frame) + (set-frame-font "Iosevka Nerd Font 12" nil t))) #+end_src ** Backups @@ -54,9 +54,8 @@ You can also use it as a ~nixosModule~, in order to add additional packages like ** Searching #+begin_src emacs-lisp :tangle yes (use-package rg) - -(setq isearch-lazy-count t) -(setq isearch-lazy-highlight t) +(use-package ctrlf + :config (ctrlf-mode +1)) #+end_src ** Age encryption Configuration to automagically open age files, and to encrypt them correctly to all my machines. |