Emacs: globally highlight matching parentheses
Alan Pearce alan@alanpearce.co.uk
Sat, 08 Jun 2013 13:54:04 +0100
1 files changed, 2 insertions(+), 1 deletions(-)
jump to
M emacs/init.el → emacs/init.el
@@ -790,6 +790,8 @@ ;; replace highlighted text rather than just inserting at point (delete-selection-mode t) +(show-paren-mode t) + (bind-key "S-SPC" #'set-mark-command) (use-package subword @@ -892,7 +894,6 @@ ;;;; Lisps (defun ap/lisp-setup () (run-hooks 'lisp-common-mode-hook) - (show-paren-mode t) (setq indent-tabs-mode nil) (local-set-key (kbd "RET") #'paredit-newline))