Skip to content

Instantly share code, notes, and snippets.

@JuHwon
Created November 9, 2016 09:02
Show Gist options
  • Save JuHwon/ecbf70387d635ad2ebb2a5f04f25f0f3 to your computer and use it in GitHub Desktop.
Save JuHwon/ecbf70387d635ad2ebb2a5f04f25f0f3 to your computer and use it in GitHub Desktop.
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'
Plugin 'editorconfig/editorconfig-vim'
Plugin 'ntpeters/vim-better-whitespace'
Plugin 'airblade/vim-gitgutter'
Bundle 'Powerline/powerline', {'rtp': 'powerline/bindings/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
colorscheme peachpuff
set number " show line numbers
set wildmenu " shows visual autocomplete
set showmatch " highlights [{()}]
set tabstop=4
set softtabstop=4
set expandtab " tabs are spaces
set incsearch " search while character is entered
set hlsearch " highlight search matches
" gitgutter
set updatetime=250
" powerline config
set guifont=Inconsolata\ for\ Powerline:h15
let g:Powerline_symbols = 'fancy'
set encoding=utf-8
set t_Co=256
set fillchars+=stl:\ ,stlnc:\
set term=xterm-256color
set termencoding=utf-8
set laststatus=2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment