File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,9 @@ Plugin 'vim-scripts/a.vim'
27
27
Plugin ' airblade/vim-gitgutter'
28
28
Plugin ' tpope/vim-fugitive'
29
29
30
+ " ----- Other text editing features -----------------------------------
31
+ Plugin ' Raimondi/delimitMate'
32
+
30
33
call vundle#end ()
31
34
32
35
filetype plugin indent on
@@ -114,3 +117,14 @@ hi clear SignColumn
114
117
let g: airline #extensions#hunks#non_zero_only = 1
115
118
116
119
120
+ " ----- Raimondi/delimitMate settings -----
121
+ let delimitMate_expand_cr = 1
122
+ augroup mydelimitMate
123
+ au !
124
+ au FileType markdown let b: delimitMate_nesting_quotes = [" `" ]
125
+ au FileType tex let b: delimitMate_quotes = " "
126
+ au FileType tex let b: delimitMate_matchpairs = " (:),[:],{:},`:'"
127
+ au FileType python let b: delimitMate_nesting_quotes = [' "' , " '" ]
128
+ augroup END
129
+
130
+
You can’t perform that action at this time.
0 commit comments