dotfiles/vim/vimrc.bundles
Bill Niblock 2652ddcb9f Update configurations
- Modified a few settings in Tmux
- Changed how the clocks look on the status bar

- Removed Vundle, using vim-plug instead
- Moved all plug-in related configuration to vimrc.bundles
2015-11-22 21:14:11 -05:00

37 lines
617 B
Text

" ######
" # Plugin File for Vim Using
" # Vim-Plug: A minimalist Vim plugin manager
" ###
" ###
" Quick-Reference
" ===
" :PlugInstall - install plugins
" :PlugUpdate - install/update plugins
" :PlugUpgrade - upgrade vim-plug
" ###
" ######
" # Fetch
" ###
call plug#begin('~/.vim/bundle')
" Current list of plugins
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-vinegar'
Plug 'bling/vim-airline'
Plug 'justinmk/vim-sneak'
Plug 'ap/vim-templates'
Plug 'vimwiki/vimwiki'
Plug 'mhinz/vim-startify'
call plug#end()
" ######
" # Configs
" ###
" Airline configuration
set laststatus=2
let g:airline_powerline_fonts = 1