Last active
March 22, 2017 01:51
-
-
Save johnjreiser/047d25cf01d2b7ed1bdb to your computer and use it in GitHub Desktop.
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
colorscheme solarized | |
syntax on | |
filetype indent plugin on | |
set tabstop=4 | |
set expandtab | |
set shiftwidth=4 | |
set softtabstop=4 | |
set number | |
set showcmd | |
set cursorline | |
set laststatus=2 | |
set noshowmode | |
set wildmenu | |
set lazyredraw | |
set ignorecase | |
set showmatch | |
set incsearch | |
set hlsearch | |
"set modeline | |
"set modelines=5 | |
if empty(glob('~/.vim/autoload/plug.vim')) | |
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs | |
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC | |
endif | |
call plug#begin('~/.vim/plugged') "load vim-plug | |
Plug 'vim-airline/vim-airline' | |
Plug 'vim-airline/vim-airline-themes' | |
call plug#end() | |
let g:airline_theme='badwolf' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment