commit 0276982892b1f6c074812b5e33dc2c219242adb9 Author: Simo-Pekka Kerkelä Date: Wed Apr 29 16:57:10 2015 +0300 initial commit diff --git a/vimrc_template.txt b/vimrc_template.txt new file mode 100644 index 0000000..7c77565 --- /dev/null +++ b/vimrc_template.txt @@ -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