Compare commits

..

No commits in common. "06208d5491a1e154721130c803f6aee83edd9bef" and "706b396e1c100092d75d6374a0107d2e75bd70cf" have entirely different histories.

View file

@ -77,7 +77,7 @@ The audible bell is annoying AF.
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(use-package whitespace (use-package whitespace
:ensure nil :ensure nil
:hook (before-save-hook . delete-trailing-whitespace) :hook (before-save-hook . whitespace-cleanup)
;; if we wanna remove this hook at any time, eval: ;; if we wanna remove this hook at any time, eval:
;; (remove-hook 'before-save-hook #'whitespace-cleanup) ;; (remove-hook 'before-save-hook #'whitespace-cleanup)
) )
@ -213,8 +213,6 @@ Show function we are currently in in the mode-line.
(use-package which-func (use-package which-func
:ensure nil :ensure nil
:defer t :defer t
:custom
(which-func-display mode-and-header)
:hook :hook
(prog-mode-hook . which-function-mode) (prog-mode-hook . which-function-mode)
) )