Skip to content

Instantly share code, notes, and snippets.

@infurno
Last active January 31, 2016 17:02
Show Gist options
  • Select an option

  • Save infurno/e47b2c03fa6f1c58c5dd to your computer and use it in GitHub Desktop.

Select an option

Save infurno/e47b2c03fa6f1c58c5dd to your computer and use it in GitHub Desktop.
My .vimrc
" size of a hard tabstop
set tabstop=4
" size of an "indent"
set shiftwidth=4
" a combination of spaces and tabs are used to simulate tab stops at a width
" other than the (hard)tabstop
set softtabstop=4
"Bundle Scripts-----------------------------
if &compatible
set nocompatible " Be iMproved
endif
" Required:
set runtimepath^=/root/.vim/bundle/neobundle.vim/
"
" Required:
call neobundle#begin(expand('/root/.vim/bundle'))
"
" Let NeoBundle manage NeoBundle
" Required:
NeoBundleFetch 'Shougo/neobundle.vim'
" Add or remove your Bundles here:
NeoBundle 'Shougo/neosnippet.vim'
NeoBundle 'Shougo/neosnippet-snippets'
NeoBundle 'tpope/vim-fugitive'
NeoBundle 'ctrlpvim/ctrlp.vim'
NeoBundle 'flazz/vim-colorschemes'
NeoBundleLazy 'jelera/vim-javascript-syntax', {'autoload':{'filetypes':['javascript']}}
" You can specify revision/branch/tag.
NeoBundle 'Shougo/vimshell', { 'rev' : '3787e5' }
" Required:
call neobundle#end()
" Required:
filetype plugin indent on
" If there are uninstalled bundles found on startup,
" this will conveniently prompt you to install them.
NeoBundleCheck
"End NeoBundle Scripts-------------------------
"
"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment