diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2019-01-31 17:52:20 +0100 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2019-01-31 17:52:20 +0100 |
| commit | 423a7073b002c926a72c9b555c5f5fd8b626cc7e (patch) | |
| tree | 5a30aa813494142ba6b437847d860c018c805e3b | |
| parent | f6b43579ea1de721fcf217d818e5c732be37bfe8 (diff) | |
| download | dotfiles-423a7073b002c926a72c9b555c5f5fd8b626cc7e.tar.gz dotfiles-423a7073b002c926a72c9b555c5f5fd8b626cc7e.zip | |
emacs: don't highlight current line
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
| -rw-r--r-- | emacs/init.org | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/emacs/init.org b/emacs/init.org index 36d4191..66e8a73 100644 --- a/emacs/init.org +++ b/emacs/init.org @@ -186,13 +186,6 @@ Relative line numbers support is builtin since GNU Emacs 26.1: (global-set-key (kbd "C-c L") 'display-line-numbers-mode))) #+END_SRC -Highlight the current line: - -#+BEGIN_SRC elisp -(use-package hl-line - :ensure t) -#+END_SRC - ** Basic editing configuration Use UTF-8 *always*. @@ -232,7 +225,7 @@ Some editing tweaks like tabs vs spaces, maximum column width, etc. ;; Cursor (blink-cursor-mode 0) - (global-hl-line-mode +1) + (global-hl-line-mode -1) (show-paren-mode 1) #+END_SRC |
