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