[emacs] Show matching parens

This commit is contained in:
Eryn Wells 2014-08-22 10:03:28 -07:00
parent 98162dad37
commit 500a7392d8

7
emacs
View file

@ -1,3 +1,6 @@
; .emacs
; Eryn Wells <eryn@erynwells.me>
; 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)