diff options
author | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-29 02:21:30 -0400 |
---|---|---|
committer | Mountain Man <43313373+MountainMan1312@users.noreply.github.com> | 2023-05-29 02:21:30 -0400 |
commit | 6968703324d287a9ea62fa656fd3bcd4f66f7d09 (patch) | |
tree | 95f3d72b82a68acccb0601fb5f7c2897a30a3f07 /init.el | |
parent | Use `vterm` for terminal (diff) | |
download | mmosmacs-6968703324d287a9ea62fa656fd3bcd4f66f7d09.tar.gz mmosmacs-6968703324d287a9ea62fa656fd3bcd4f66f7d09.tar.bz2 mmosmacs-6968703324d287a9ea62fa656fd3bcd4f66f7d09.zip |
Don't show line numbers in `vterm-mode`
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -314,7 +314,9 @@ | |||
314 | ;; Disable line numbers in specific modes | 314 | ;; Disable line numbers in specific modes |
315 | (dolist (mode '(org-mode-hook | 315 | (dolist (mode '(org-mode-hook |
316 | org-agenda-mode-hook | 316 | org-agenda-mode-hook |
317 | helpful-mode-hook)) | 317 | helpful-mode-hook |
318 | term-mode | ||
319 | vterm-mode)) | ||
318 | (add-hook mode (lambda () (display-line-numbers-mode 0)))) | 320 | (add-hook mode (lambda () (display-line-numbers-mode 0)))) |
319 | 321 | ||
320 | 322 | ||