Created
April 17, 2017 19:00
-
-
Save jmnwong/dfa4c089ae8fde8b0a9b1777a8a497db 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
set shell=/bin/bash | |
set nocompatible " be iMproved, required | |
filetype off " required | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" alternatively, pass a path where Vundle should install plugins | |
"call vundle#begin('~/some/path/here') | |
" let Vundle manage Vundle, required | |
Plugin 'VundleVim/Vundle.vim' | |
" The following are examples of different formats supported. | |
" Keep Plugin commands between vundle#begin/end. | |
" plugin on GitHub repo | |
Plugin 'tpope/vim-fugitive' | |
" plugin from http://vim-scripts.org/vim/scripts.html | |
" Plugin 'L9' | |
" Git plugin not hosted on GitHub | |
Plugin 'git://git.wincent.com/command-t.git' | |
" vim-gitgutter shows signs for line additions (+), modifications (~), | |
" or removals (-) in the vim window gutter if the file you’re modifying is in a git repo. | |
Plugin 'airblade/vim-gitgutter' | |
" vim-indent-guides provides visual indicators of the indent level of each line in a file. | |
Plugin 'nathanaelkane/vim-indent-guides' | |
" YouCompleteMe is an autocomplete plugin that makes writing Python code | |
" in vim a much nicer and easier experience. | |
Plugin 'Valloric/YouCompleteMe' | |
" badwolf is a vim colorscheme put together by Steve Losh. | |
Plugin 'sjl/badwolf' | |
" ctrlp is a fuzzy file and buffer finder that shows up above the vim status | |
" bar when you’re trying to find or edit another file. | |
Plugin 'ctrlpvim/ctrlp.vim' | |
" All of your Plugins must be added before the following line | |
call vundle#end() " required | |
filetype plugin indent on " required | |
" To ignore plugin indent changes, instead use: | |
"filetype plugin on | |
" | |
" Brief help | |
" :PluginList - lists configured plugins | |
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate | |
" :PluginSearch foo - searches for foo; append `!` to refresh local cache | |
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal | |
" | |
" see :h vundle for more details or wiki for FAQ | |
" Put your non-Plugin stuff after this line | |
syntax on | |
set ts=4 | |
set number |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment