diff --git a/config.org b/config.org index fcb643e..f91f1a1 100644 --- a/config.org +++ b/config.org @@ -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