initial commit
This commit is contained in:
commit
0276982892
1 changed files with 42 additions and 0 deletions
42
vimrc_template.txt
Normal file
42
vimrc_template.txt
Normal file
|
@ -0,0 +1,42 @@
|
|||
set nocompatible
|
||||
filetype off
|
||||
set t_Co=256
|
||||
syntax on
|
||||
set background=dark
|
||||
set backspace=indent,eol,start
|
||||
" 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')
|
||||
set number
|
||||
" let Vundle manage Vundle, required
|
||||
Plugin 'gmarik/Vundle.vim'
|
||||
Plugin 'jelera/vim-javascript-syntax'
|
||||
Plugin 'pangloss/vim-javascript'
|
||||
Plugin 'nathanaelkane/vim-indent-guides'
|
||||
Plugin 'Raimondi/delimitMate'
|
||||
Plugin 'scrooloose/syntastic'
|
||||
Plugin 'Valloric/YouCompleteMe'
|
||||
let g:ycm_add_preview_to_completeopt=0
|
||||
let g:ycm_confirm_extra_conf=0
|
||||
set completeopt-=preview
|
||||
Plugin 'marijnh/tern_for_vim'
|
||||
" All of your Plugins must be added before the following line
|
||||
call vundle#end() " required
|
||||
filetype plugin indent on " required
|
||||
" To ignore plugin indent changes, instead use:
|
||||
"filetype plugin on
|
||||
"
|
||||
" Brief help
|
||||
" :PluginList - lists configured plugins
|
||||
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
|
||||
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
|
||||
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
|
||||
"
|
||||
" see :h vundle for more details or wiki for FAQ
|
||||
" Put your non-Plugin stuff after this line
|
||||
" filetype plugin indent on
|
||||
set tabstop=4
|
||||
set shiftwidth=4
|
||||
set expandtab
|
Loading…
Add table
Add a link
Reference in a new issue