aboutsummaryrefslogtreecommitdiff
path: root/vim/vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc9
1 files changed, 6 insertions, 3 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 3678e375..d1b47b0b 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -98,9 +98,6 @@ if v:version >= 700
set listchars+=nbsp:+ " Non-breaking spaces
endif
-" Add angle brackets to pairs of matched characters
-set matchpairs+=<:>
-
" Don't allow setting options via buffer content
set nomodeline
@@ -144,6 +141,12 @@ if has('linebreak')
endif
endif
+" Don't store any options or mappings in sessions
+if has('mksession')
+ set sessionoptions-=localoptions
+ set sessionoptions-=options
+endif
+
" Let me move beyond buffer text in visual block mode
if has('virtualedit')
set virtualedit+=block