Disable line numbers in dashboard

They look ugly when large margins are involved.
This commit is contained in:
Henrik Lissner 2020-07-26 14:03:45 -04:00
parent 69ce5d5ea0
commit e1fc2db751
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -182,6 +182,8 @@ PLIST can have the following properties:
;; Don't scroll to follow cursor ;; Don't scroll to follow cursor
(setq-local scroll-preserve-screen-position nil) (setq-local scroll-preserve-screen-position nil)
(setq-local auto-hscroll-mode nil) (setq-local auto-hscroll-mode nil)
;; Line numbers are ugly with large margins
(setq-local display-line-numbers-type nil)
(cl-loop for (car . _cdr) in fringe-indicator-alist (cl-loop for (car . _cdr) in fringe-indicator-alist
collect (cons car nil) into alist collect (cons car nil) into alist
finally do (setq fringe-indicator-alist alist)) finally do (setq fringe-indicator-alist alist))