diff options
author | toni <matzeton@googlemail.com> | 2014-07-07 14:28:59 +0200 |
---|---|---|
committer | toni <matzeton@googlemail.com> | 2014-07-07 14:28:59 +0200 |
commit | 29eecdc76456e6db739f1b7fcca9e9608ef2911e (patch) | |
tree | 3352730e4ab83f8a9bb1c06946e519f9519f50b7 /configs/vimrc | |
parent | 6c3239a8198bdff83787c1b82cc212806d736cac (diff) |
.vimrc added
Diffstat (limited to 'configs/vimrc')
-rw-r--r-- | configs/vimrc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/configs/vimrc b/configs/vimrc new file mode 100644 index 0000000..a536154 --- /dev/null +++ b/configs/vimrc @@ -0,0 +1,12 @@ +syntax on + +let Tlist_Ctags_Cmd = "/usr/bin/ctags" +let Tlist_WinWidth = 50 +map <F4> :TlistToggle<cr> +syntax on +filetype plugin on +autocmd BufWritePost * + \ if filereadable('tags') | + \ call system('ctags -a '.expand('%')) | + \ endif + |