diff options
author | Johannes Stolp <jstolp@fr65cs25.internal.synopsys.com> | 2016-08-12 18:06:28 +0200 |
---|---|---|
committer | Johannes Stolp <jstolp@fr65cs25.internal.synopsys.com> | 2016-08-12 18:06:28 +0200 |
commit | 7113c37a7895fbf0faf97b9b8868b6025853bc6f (patch) | |
tree | 9c3cf4a7177cc3352feb1972e8301a7b98fe3610 /.vim/vimrc_files/vundle.vim | |
parent | e27e4094041138d2430bd6f3123a4bbf677f508a (diff) | |
download | dotfiles-7113c37a7895fbf0faf97b9b8868b6025853bc6f.tar.gz dotfiles-7113c37a7895fbf0faf97b9b8868b6025853bc6f.zip |
Added vim tpope-dispatch plugin, added quickfix auto open
Diffstat (limited to '.vim/vimrc_files/vundle.vim')
-rw-r--r-- | .vim/vimrc_files/vundle.vim | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.vim/vimrc_files/vundle.vim b/.vim/vimrc_files/vundle.vim index b540ef0..c35d77d 100644 --- a/.vim/vimrc_files/vundle.vim +++ b/.vim/vimrc_files/vundle.vim @@ -1,7 +1,8 @@ " dotfiles -- .vim/vimrc_files/vundle.vim " author: johannst -" to install plugins open vim and run :PluginInstall +" to install plugins open vim and run :PluginInstall from within vim OR +" vim +PluginInstall +qall from cmd line filetype off " necessary for vundle!!! set rtp+=~/.vim/bundle/Vundle.vim @@ -20,4 +21,7 @@ Plugin 'majutsushi/tagbar' " c++ modifief headers: http://www.vim.org/scripts/script.php?script_id=2358 Plugin 'vim-scripts/OmniCppComplete' +"Plugin 'vim-scripts/Conque-GDB' +Plugin 'tpope/vim-dispatch' + call vundle#end() |