diff options
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-ui.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emacs.d/custom/fcuny-ui.el b/emacs.d/custom/fcuny-ui.el index 9a96bb0..a194d1e 100644 --- a/emacs.d/custom/fcuny-ui.el +++ b/emacs.d/custom/fcuny-ui.el @@ -37,9 +37,9 @@ (display-time-mode t))) (use-package hl-line - :config - (set-face-background 'hl-line "#E0EBF5") - (global-hl-line-mode t)) + :hook ((prog-mode puppet-mode dired-mode org-mode markdown-mode) . hl-line-mode) + :custom + (hl-line-sticky-flag nil)) (use-package uniquify :defer 5 |