summaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
authorJohannes Stolp <jstolp@vgfr65cs1.internal.synopsys.com>2016-07-12 20:19:32 +0200
committerJohannes Stolp <jstolp@vgfr65cs1.internal.synopsys.com>2016-07-12 20:19:32 +0200
commit6a2299df8c0c8cb97be883f0e1dd0c8c7cf7a2ff (patch)
treec180153f8ffe3b1109e7f7032d73e2ea8dd32abd /.vimrc
parent9afd3dbc4c5236bdc2a93d63ebb68d918e03af86 (diff)
downloaddotfiles-6a2299df8c0c8cb97be883f0e1dd0c8c7cf7a2ff.tar.gz
dotfiles-6a2299df8c0c8cb97be883f0e1dd0c8c7cf7a2ff.zip
added tmux config file
added tagbar support for vim
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/.vimrc b/.vimrc
index 0069d2b..100c241 100644
--- a/.vimrc
+++ b/.vimrc
@@ -3,7 +3,6 @@
set nocompatible " make Vim less Vi
-
source ~/.vim/vimrc_files/vundle.vim
source ~/.vim/vimrc_files/plugin_config.vim
@@ -21,6 +20,8 @@ colorscheme buddy
" +----------------------------+
" | Basic Settings |
" +----------------------------+
+set timeoutlen=1234 " time in ms until command are interpreted
+
filetype plugin indent on " enable loading indent file for filetype
set ffs=unix,dos,mac " Try recognizing dos, unix, and mac line endings.
@@ -76,7 +77,6 @@ set wildignore+=*.o,*.obj,.git,*.pyc,*~
" No annoying sound on errors
set noerrorbells
set novisualbell
-set tm=500
" +----------------------------+
" | Source Extrenal Files |