diff options
author | Leonardo Santiago <[email protected]> | 2024-09-13 20:09:29 -0300 |
---|---|---|
committer | Leonardo Santiago <[email protected]> | 2024-09-13 20:09:29 -0300 |
commit | 58e4b197de4050098569fb7146fa3a726840f8d5 (patch) | |
tree | f867427118cb2af7df5a62af9aecf7c71a22d041 /modules/emacs/README.org | |
parent | 62100c9265a4de389d1ea8060cbddddacde161a7 (diff) |
more stuff
Diffstat (limited to 'modules/emacs/README.org')
-rw-r--r-- | modules/emacs/README.org | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/modules/emacs/README.org b/modules/emacs/README.org index 81c0775..432d498 100644 --- a/modules/emacs/README.org +++ b/modules/emacs/README.org @@ -74,14 +74,18 @@ Configuration to automagically open age files, and to encrypt them correctly to :config (age-file-enable)) #+end_src -** All the Icons +** Nerd icons #+begin_src emacs-lisp :tangle yes -(use-package all-the-icons) +(use-package nerd-icons + :custom + (nerd-icons-font-family "Iosevka Nerd Font")) -(use-package all-the-icons-completion - :after all-the-icons +(use-package nerd-icons-completion + :after nerd-icons :after marginalia - :hook (marginalia-mode . all-the-icons-completion-mode)) + :hook (marginalia-mode . nerd-icons-completion-marginal) + :config + (nerd-icons-completion-mode)) #+end_src ** Direnv To integrate with nix shells. |