diff options
author | Alan Pearce | 2016-03-16 10:45:40 +0100 |
---|---|---|
committer | Alan Pearce | 2016-03-16 10:45:40 +0100 |
commit | f18d9e1910b925eea3e67466ccd519bfce8e9936 (patch) | |
tree | c6e1614aec59f8afcfa411dbb43d57b83376485b /tag-emacs/emacs.d/init.org | |
parent | e84a3c8f9b949a4a19944d17b9d18980906849bb (diff) | |
download | nixfiles-f18d9e1910b925eea3e67466ccd519bfce8e9936.tar.lz nixfiles-f18d9e1910b925eea3e67466ccd519bfce8e9936.tar.zst nixfiles-f18d9e1910b925eea3e67466ccd519bfce8e9936.zip |
Emacs: Disable smartparens pair overlays
They seem quite buggy, especially with multiple cursors and aren’t really necessary
Diffstat (limited to 'tag-emacs/emacs.d/init.org')
-rw-r--r-- | tag-emacs/emacs.d/init.org | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index a87a2ddc..2ce7be0f 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -2381,6 +2381,7 @@ nice as the real version :ensure smartparens :config (progn (sp-use-smartparens-bindings) + (setq sp-highlight-pair-overlay nil) (fset 'wrap-with-paren "\C-](") ;; `sp-select-next-thing-exchange' (bind-key "C-(" #'wrap-with-paren smartparens-mode-map) (bind-key "C-)" #'sp-forward-slurp-sexp smartparens-mode-map) |