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 @@ -28,6 +28,9 @@ Plugin 'vim-scripts/a.vim'
2828Plugin ' airblade/vim-gitgutter'
2929Plugin ' tpope/vim-fugitive'
3030
31+ " ----- Other text editing features -----------------------------------
32+ Plugin ' Raimondi/delimitMate'
33+
3134call vundle#end ()
3235
3336filetype plugin indent on
@@ -119,3 +122,14 @@ nmap <silent> <leader>b :TagbarToggle<CR>
119122let g: airline #extensions#hunks#non_zero_only = 1
120123
121124
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