Skip to content

Instantly share code, notes, and snippets.

@hacker65536
Created June 3, 2016 03:10
Show Gist options
  • Save hacker65536/dbaf9b87c90f6b34b13e7a616aa88868 to your computer and use it in GitHub Desktop.
Save hacker65536/dbaf9b87c90f6b34b13e7a616aa88868 to your computer and use it in GitHub Desktop.
au FileType * setlocal formatoptions-=ro
" starnderd settings
set autoindent
set tabstop=2
set shiftwidth=2
set softtabstop=0
set paste
"NeoBundle 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'
NeoBundle 'mattn/gist-vim', {'depends': 'mattn/webapi-vim'}
" 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