Last active
November 9, 2018 14:36
-
-
Save varh1i/a6eb134509ee37e719decc450e7cb93e to your computer and use it in GitHub Desktop.
Vimrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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