diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-21 15:27:16 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-21 15:27:16 -0400 |
commit | 30b9a4ce0351db09160a3a1f81b36190ef75b581 (patch) | |
tree | 95965cc335a61972e4a3f94b8a5f0653eb3ba68f | |
parent | Remove `paredit` for now because it's too confusing (diff) | |
download | mmosmacs-30b9a4ce0351db09160a3a1f81b36190ef75b581.tar.gz mmosmacs-30b9a4ce0351db09160a3a1f81b36190ef75b581.tar.bz2 mmosmacs-30b9a4ce0351db09160a3a1f81b36190ef75b581.zip |
Disable line numbers in `helpful-mode`
-rw-r--r-- | init.el | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -300,7 +300,8 @@ | |||
300 | 300 | ||
301 | ;; Disable line numbers in specific modes | 301 | ;; Disable line numbers in specific modes |
302 | (dolist (mode '(org-mode-hook | 302 | (dolist (mode '(org-mode-hook |
303 | org-agenda-mode-hook)) | 303 | org-agenda-mode-hook |
304 | helpful-mode-hook)) | ||
304 | (add-hook mode (lambda () (display-line-numbers-mode 0)))) | 305 | (add-hook mode (lambda () (display-line-numbers-mode 0)))) |
305 | 306 | ||
306 | 307 | ||