Add nlinum to turn-off-line-numbers

This commit is contained in:
MitchMarq42 2022-11-30 16:27:43 -09:00
parent 2648f8384f
commit 58a6acbb7f

View File

@ -148,7 +148,11 @@ For use in hooks."
(if (fboundp #'linum-mode) (if (fboundp #'linum-mode)
(linum-mode -1)) (linum-mode -1))
(if (fboundp #'linum-relative-mode) (if (fboundp #'linum-relative-mode)
(linum-relative-mode -1))) (linum-relative-mode -1))
(if (fboundp #'nlinum-mode)
(nlinum-mode -1))
(if (fboundp #'nlinum-relative-mode)
(nlinum-relative-mode -1)))
(defun mitch/terminal-setup () (defun mitch/terminal-setup ()
"A batch of commands to run when opening anything that looks like a terminal. "A batch of commands to run when opening anything that looks like a terminal.