fix(emacs.d): Only highlight current line in prog-modes
This is extremely annoying in vterms, so now it's gone!
This commit is contained in:
parent
4897669f50
commit
20ef6710e0
2 changed files with 1 additions and 3 deletions
|
@ -90,9 +90,6 @@
|
|||
;; Show column numbers in all buffers
|
||||
(column-number-mode t)
|
||||
|
||||
;; Highlight currently active line
|
||||
(global-hl-line-mode t)
|
||||
|
||||
(defalias 'yes-or-no-p 'y-or-n-p)
|
||||
(defalias 'auto-tail-revert-mode 'tail-mode)
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
;; Initializes modes I use.
|
||||
|
||||
(add-hook 'prog-mode-hook 'esk-add-watchwords)
|
||||
(add-hook 'prog-mode-hook 'hl-line-mode)
|
||||
|
||||
;; Use auto-complete as completion at point
|
||||
(defun set-auto-complete-as-completion-at-point-function ()
|
||||
|
|
Loading…
Reference in a new issue