[emacs] Show matching parens
This commit is contained in:
parent
98162dad37
commit
500a7392d8
1 changed files with 7 additions and 0 deletions
7
emacs
7
emacs
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue