-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #69 from linkernetworks/alex/AddVimSetting
Add vim setting Former-commit-id: 691cf2c3093b8d2b0f463948660e1e8baf39d78c [formerly d7e2263] Former-commit-id: 6416a0eef21f1dc1d0eb9ab892ab18b750345994
- Loading branch information
Showing
2 changed files
with
37 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
set nocompatible " be iMproved, required | ||
filetype off " required | ||
|
||
" set the runtime path to include Vundle and initialize | ||
set rtp+=~/.vim/bundle/Vundle.vim | ||
call vundle#begin() | ||
" alternatively, pass a path where Vundle should install plugins | ||
"call vundle#begin('~/some/path/here') | ||
|
||
" let Vundle manage Vundle, required | ||
Plugin 'VundleVim/Vundle.vim' | ||
Plugin 'c9s/helper.vim' | ||
Plugin 'c9s/treemenu.vim' | ||
Plugin 'c9s/vikube.vim' | ||
Plugin 'tpope/vim-fugitive' | ||
Plugin 'c9s/hypergit.vim' | ||
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'} | ||
Plugin 'fatih/vim-go', {'do': ':GoInstallBinaries'} | ||
Plugin 'Valloric/YouCompleteMe' | ||
Plugin 'scrooloose/nerdtree' | ||
|
||
call vundle#end() " required | ||
filetype plugin indent on " required |