Last active
January 31, 2016 17:02
-
-
Save infurno/e47b2c03fa6f1c58c5dd to your computer and use it in GitHub Desktop.
My .vimrc
This file contains hidden or 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
| " 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