From 0276982892b1f6c074812b5e33dc2c219242adb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simo-Pekka=20Kerkel=C3=A4?= Date: Wed, 29 Apr 2015 16:57:10 +0300 Subject: [PATCH] initial commit --- vimrc_template.txt | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 vimrc_template.txt 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