aboutsummaryrefslogtreecommitdiff
path: root/files/.vimrc
diff options
context:
space:
mode:
authorAnton Bobov <abobov@gmail.com>2016-07-28 09:23:29 +0500
committerAnton Bobov <abobov@gmail.com>2016-07-28 09:23:29 +0500
commit893fcdd5b408d9ac0ba28fc44ed883617453a5ec (patch)
tree3d10065085b093d441b35310ee408df65416c54b /files/.vimrc
parentbfba0f9b9b422a8ab8b4cfaf1916b437b6da9e16 (diff)
[vim] Update modules.
Diffstat (limited to 'files/.vimrc')
-rw-r--r--files/.vimrc6
1 files changed, 6 insertions, 0 deletions
diff --git a/files/.vimrc b/files/.vimrc
index a8eb5a7..7947aa9 100644
--- a/files/.vimrc
+++ b/files/.vimrc
@@ -211,6 +211,7 @@ if has('autocmd')
au BufReadPost *.ledger norm G
" Set scripts to be executable from shell
+ "au BufWritePost * if getline(1) =~ "^#!.*/bin/" | silent !chmod +x <afile> | endif
au BufWritePost * if getline(1) =~ "^#!.*/bin/" | silent exec "!chmod +x <afile>" | endif
endif
" }}}
@@ -412,6 +413,11 @@ endfunction
nnoremap <silent> <Leader>T :call TabularizeUnderCursos()<cr>
" }}}
+" Emmet {{{
+
+let g:user_emmet_expandabbr_key = '<C-e>'
+
+" }}}
" }}}
" Load custom local config {{{