feat: Add which-func configuration

This commit is contained in:
Laurens Miers 2025-05-27 13:06:26 +02:00
parent c3a188defe
commit 4aeb92eb6f

View file

@ -205,6 +205,19 @@ https://endlessparentheses.com/leave-the-cursor-at-start-of-match-after-isearch.
)
#+END_SRC
** Which-func
Show function we are currently in in the mode-line.
#+BEGIN_SRC emacs-lisp
(use-package which-func
:ensure nil
:defer t
:hook
(prog-mode-hook . which-function-mode)
)
#+END_SRC
** Abbrev
#+begin_src emacs-lisp