From 500a7392d830015abc2f3d0e826a551934110533 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Fri, 22 Aug 2014 10:03:28 -0700 Subject: [PATCH] [emacs] Show matching parens --- emacs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/emacs b/emacs index 6da016e..e0bfcd7 100644 --- a/emacs +++ b/emacs @@ -1,3 +1,6 @@ +; .emacs +; Eryn Wells + ; Show point position in the status bar (line-number-mode 1) (column-number-mode 1) @@ -8,6 +11,10 @@ ; Spaces, not tabs! (setq-default indent-tabs-mode 'nil) +; Show matching parens with 0 delay +(setq show-paren-delay 0) +(show-paren-mode 1) + ; Follow symlinks (setq-default vc-follow-symlinks 't)