Last active
March 28, 2016 15:53
-
-
Save 1davidmichael/cb402d5cb2ceadc96956 to your computer and use it in GitHub Desktop.
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
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 | source $MYVIMRC | |
endif | |
call plug#begin('~/.vim/bundle') | |
Plug 'tpope/vim-sensible' | |
Plug 'tpope/vim-fugitive' | |
Plug 'tpope/vim-surround' | |
Plug 'scrooloose/nerdtree' | |
Plug 'rodjek/vim-puppet' | |
Plug 'junegunn/vim-easy-align' | |
Plug 'ctrlpvim/ctrlp.vim' | |
Plug 'pearofducks/ansible-vim' | |
Plug 'vim-airline/vim-airline' | |
Plug 'vim-airline/vim-airline-themes' | |
Plug 'marciomazza/vim-brogrammer-theme' | |
Plug 'lanox/lanox-vim-theme' | |
Plug 'ConradIrwin/vim-bracketed-paste' | |
call plug#end() | |
colorscheme brogrammer | |
let g:airline_theme='murmur' | |
filetype plugin indent on | |
set tabstop=4 shiftwidth=4 expandtab |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment