diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-16T03·55+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-16T03·56+0000 |
commit | 20ef6710e0129579bbcf8cb1becda7b18cf6c278 (patch) | |
tree | a312379c1f7f2a91a061d3926eed5fa9955c92eb /tools/emacs/config/modes.el | |
parent | 4897669f501a9718d7e02287aee781aecb156c0f (diff) |
fix(emacs.d): Only highlight current line in prog-modes r/161
This is extremely annoying in vterms, so now it's gone!
Diffstat (limited to 'tools/emacs/config/modes.el')
-rw-r--r-- | tools/emacs/config/modes.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/emacs/config/modes.el b/tools/emacs/config/modes.el index ceef84b9626d..8d47f2f9a531 100644 --- a/tools/emacs/config/modes.el +++ b/tools/emacs/config/modes.el @@ -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 () |