-
Notifications
You must be signed in to change notification settings - Fork 0
/
vimrc.PLUGINS
31 lines (22 loc) · 1.05 KB
/
vimrc.PLUGINS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
" Begin the section with call plug#begin()
" List the plugins with Plug commands
call plug#begin('~/.vim/plugged')
" **************** "
" Interface
" **************** "
" lean & mean status/tabline for vim that's light as air
Plug 'vim-airline/vim-airline'
" airline themes are in a separate repository
Plug 'vim-airline/vim-airline-themes'
" Generate a fast shell prompt with powerline symbols and airline colors
Plug 'dmitrii-n/promptline.vim'
" Simple tmux statusline generator with support for powerline symbols and airline integration
Plug 'edkolev/tmuxline.vim'
" solarized colorscheme
Plug 'altercation/vim-colors-solarized'
" Adds file type glyphs/icons to popular Vim plugins; load last for
" integration with other plugins
Plug 'ryanoasis/vim-devicons'
" NOTE - Automatically executes filetype plugin indent on and syntax enable.
" You can revert the settings after the call. e.g. filetype indent off, syntax off, etc.
call plug#end()