From 4aeb92eb6f69853a4ee304c69d5a699fe4448e68 Mon Sep 17 00:00:00 2001 From: Laurens Miers Date: Tue, 27 May 2025 13:06:26 +0200 Subject: [PATCH] feat: Add which-func configuration --- config.org | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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