[Emacs] Enable display-line-numbers-mode

This commit is contained in:
Ivan Malison 2023-08-29 19:22:03 -06:00
parent 3eed03beb7
commit bbf0b82262

View File

@ -1073,25 +1073,9 @@ I keep it around just in case I need it.
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(line-number-mode t) (line-number-mode t)
(column-number-mode t) (column-number-mode t)
#+END_SRC (defun imalison:enable-display-line-numbers-mode ()
*** nlinum (display-line-numbers-mode +1))
Disabling line numbers because they are slow as fuck. (add-hook 'prog-mode-hook 'imalison:enable-display-line-numbers-mode)
#+BEGIN_SRC emacs-lisp
(use-package nlinum
:disabled t
:demand t
:config
(progn
(add-hook 'prog-mode-hook (lambda () (nlinum-mode t)))
(defun imalison-nlinum-mode-hook ()
(when nlinum-mode
(setq-local nlinum-format
(concat "%" (number-to-string
;; Guesstimate number of buffer lines.
(ceiling (log (max 1 (/ (buffer-size) 80)) 10)))
"d"))))
(add-hook 'nlinum-mode-hook #'imalison-nlinum-mode-hook)))
#+END_SRC #+END_SRC
** Backups ** Backups
*** Put them all in one directory *** Put them all in one directory