Compare commits
2 Commits
2540108cce
...
8fae63f87a
Author | SHA1 | Date | |
---|---|---|---|
8fae63f87a | |||
5318c3ce3b |
@ -20,6 +20,18 @@
|
||||
;; (run-with-idle-timer 5 t #'garbage-collect)
|
||||
;(setq garbage-collection-messages t)
|
||||
|
||||
;; doesn't quite work
|
||||
(defun mir/dont-make-obsolete (orig &rest args)
|
||||
"only run ORIG when its not linum."
|
||||
;; (message "obsoleting: %s" args)
|
||||
(if (or (member 'global-linum-mode args)
|
||||
(member 'linum-mode args))
|
||||
(message "linum is deprecated but i dont care")
|
||||
;; (let ((inhibit-message t))
|
||||
;; (apply orig args))
|
||||
(apply orig args)))
|
||||
(advice-add #'make-obsolete :around #'mir/dont-make-obsolete)
|
||||
|
||||
(defun display-startup-echo-area-message ()
|
||||
"A re-definition of the function.
|
||||
Tell the Emacs startup time and number of garbage-collections
|
||||
|
5
init.el
5
init.el
@ -665,6 +665,11 @@ targets."
|
||||
;; upd: this is not waht that does 💀
|
||||
;; (use-package el-patch)
|
||||
;; SORTA WORKING: Relative line numbers with stuff
|
||||
(use-package nlinum
|
||||
:custom-face
|
||||
(linum
|
||||
((t (:foreground "#303030"))))
|
||||
:ensure (:repo "https://git.marq42.xyz/mir/nlinum"))
|
||||
(use-package nlinum-relative
|
||||
:custom
|
||||
(nlinum-relative-redisplay-delay 0)
|
||||
|
Loading…
Reference in New Issue
Block a user