diff options
author | Franck Cuny <franck@fcuny.net> | 2022-01-14 10:56:50 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-01-14 10:56:50 -0800 |
commit | 8dc55f1f52a2f3e623551cf2e0cbf411fe1c76a4 (patch) | |
tree | 7a20f077de69f611e011f41b11aaa1c842b0e9d8 | |
parent | emacs: slightly bigger font on linux (diff) | |
download | emacs.d-8dc55f1f52a2f3e623551cf2e0cbf411fe1c76a4.tar.gz |
emacs: remove configuration for hl-mode
It's fragile and make some stuff unreadable.
Diffstat (limited to '')
-rw-r--r-- | emacs/custom/fcuny-ui.el | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/emacs/custom/fcuny-ui.el b/emacs/custom/fcuny-ui.el index ec76b99..8303dfe 100644 --- a/emacs/custom/fcuny-ui.el +++ b/emacs/custom/fcuny-ui.el @@ -124,13 +124,13 @@ (setq mode-line-default-help-echo nil show-help-function nil) -(use-package hl-line - :hook ((prog-mode text-mode conf-mode special-mode) . hl-line-mode) - :custom - ;; Not having to render the hl-line overlay in multiple buffers offers a tiny - ;; performance boost. I also don't need to see it in other buffers. - (hl-line-sticky-flag nil) - (global-hl-line-sticky-flag nil)) +;; (use-package hl-line +;; :hook ((prog-mode text-mode conf-mode special-mode) . hl-line-mode) +;; :custom +;; ;; Not having to render the hl-line overlay in multiple buffers offers a tiny +;; ;; performance boost. I also don't need to see it in other buffers. +;; (hl-line-sticky-flag nil) +;; (global-hl-line-sticky-flag nil)) (use-package uniquify :defer 5 |