aboutsummaryrefslogtreecommitdiff
path: root/files/.vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'files/.vimrc')
-rw-r--r--files/.vimrc13
1 files changed, 13 insertions, 0 deletions
diff --git a/files/.vimrc b/files/.vimrc
index 7947aa9..fda2d1d 100644
--- a/files/.vimrc
+++ b/files/.vimrc
@@ -334,6 +334,12 @@ augroup ft_ledger
au FileType ledger inoremap <silent><buffer> <Leader>e <Esc>:call ledger#entry()<CR>
augroup END
" }}}
+" Org {{{
+augroup ft_org
+ au!
+ au FileType org setlocal spell nolist
+augroup END
+" }}}
" }}}
" Plugins {{{
" Surround {{{
@@ -379,6 +385,7 @@ let NERDTreeMinimalUI = 1
let NERDTreeDirArrows = 1
let NERDChristmasTree = 1
let NERDTreeChDirMode = 2
+let NERDTreeAutoDeleteBuffer=1
let NERDTreeIgnore = [ '\.pyc$' ]
@@ -418,6 +425,12 @@ nnoremap <silent> <Leader>T :call TabularizeUnderCursos()<cr>
let g:user_emmet_expandabbr_key = '<C-e>'
" }}}
+" delimitMate {{{
+
+let delimitMate_expand_cr = 1
+au FileType html,xml let b:delimitMate_matchpairs="(:),[:],{:}"
+
+" }}}
" }}}
" Load custom local config {{{