Enable which-function-mode

Displays current function in modeline
This commit is contained in:
Evie Litherland-Smith 2023-12-07 14:33:19 +00:00
parent 6f7735bd1b
commit ba25b9febc
2 changed files with 11 additions and 0 deletions

View file

@ -100,6 +100,10 @@
("C-c j l" . avy-goto-line)
("C-c j C-c" . avy-goto-char-2)))
(use-package which-func
:ensure t
:init (which-function-mode))
(setq use-dialog-box nil
truncate-lines nil
truncate-partial-width-windows nil)

View file

@ -128,6 +128,13 @@
("C-c j l" . avy-goto-line)
("C-c j C-c" . avy-goto-char-2)))
#+end_src
** which-func config
#+begin_src emacs-lisp
(use-package which-func
:ensure t
:init (which-function-mode))
#+end_src
* UI
#+begin_src emacs-lisp
(setq use-dialog-box nil