From 5812d7b29e056649d2b8761d3b5eae9f22a853ef Mon Sep 17 00:00:00 2001 From: Leonardo Santiago Date: Tue, 25 Jun 2024 20:59:00 -0300 Subject: update stuff --- modules/emacs/README.org | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'modules') 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. -- cgit v1.2.3