Every time I open a new file in emacs, hl-line-mode is enabled. I have put
(global-hl-line-mode -1)
(hl-line-mode -1)
in my init.el, but to no avail. What am I doing wrong???
Every time I open a new file in emacs, hl-line-mode is enabled. I have put
(global-hl-line-mode -1)
(hl-line-mode -1)
in my init.el, but to no avail. What am I doing wrong???
emacs -Q
) then recursively bisect your init file to find out where you are turning it on. Look after you turn it off in your init file. – Drew Feb 16 '17 at 04:02M-:
(global-hl-line-mode -1)
and does this turn the hightlight off? I gues some mode has this set as a hook when it is being loaded. So the question is which packages do you have installed, and checking which ones might do it. – Sideshowcoder Feb 16 '17 at 10:08