Skip to content

Instantly share code, notes, and snippets.

@mitchthorson
Last active August 29, 2015 14:02
Show Gist options
  • Save mitchthorson/a02ded877a706b424f04 to your computer and use it in GitHub Desktop.
Save mitchthorson/a02ded877a706b424f04 to your computer and use it in GitHub Desktop.
Vim configuration
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')
Bundle 'chriskempson/base16-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 - list configured plugins
" :PluginInstall(!) - install (update) plugins
" :PluginSearch(!) foo - search (or refresh cache first) for foo
" :PluginClean(!) - confirm (or auto-approve) removal of unused plugins
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line
syntax on
set background=dark
colorscheme base16-default
set number
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment