Skip to content

Instantly share code, notes, and snippets.

@varh1i
Last active November 9, 2018 14:36
Show Gist options
  • Save varh1i/a6eb134509ee37e719decc450e7cb93e to your computer and use it in GitHub Desktop.
Save varh1i/a6eb134509ee37e719decc450e7cb93e to your computer and use it in GitHub Desktop.
Vimrc
install neobundle: https://github.com/Shougo/neobundle.vim
"NeoBundle Scripts-----------------------------
if &compatible
set nocompatible " Be iMproved
endif
" Required:
set runtimepath+=/home/varh1i/.vim/bundle/neobundle.vim/
" Required:
call neobundle#begin(expand('/home/varh1i/.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 'scrooloose/nerdtree'
" 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-------------------------
:set nu
:set ruler
:set hlsearch
:color desert
autocmd vimenter * NERDTree
autocmd VimEnter * wincmd p
:command XML %!xmllint --format -
:command JSON %!python -m json.tool
:command Q wqa
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment