-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc
52 lines (36 loc) · 1014 Bytes
/
vimrc
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
" ############
" # RIP FLUX #
" ############
set nocompatible " be iMproved, required
filetype off " required
" set the vim-plug plugin directory
call plug#begin('~/.vim/plugged')
" let Vundle manage Vundle, required
Plug 'VundleVim/Vundle.vim'
" git wrapper
Plug 'tpope/vim-fugitive'
" fuzzy file opener
Plug 'kien/ctrlp.vim'
" commentary plugin
Plug 'scrooloose/nerdcommenter'
" tree explorer
Plug 'scrooloose/nerdtree'
" syntax check
Plug 'w0rp/ale'
" statusline
Plug 'itchyny/lightline.vim'
" file types plugins
Plug 'kchmck/vim-coffee-script'
Plug 'vim-scripts/mako.vim'
Plug 'vim-scripts/nginx.vim'
" color themes
Plug 'vim-scripts/peaksea'
" Initialize vim-plug plugin system
call plug#end()
source ~/.vim/settings/generic_settings.vim
source ~/.vim/settings/generic_bindings.vim
source ~/.vim/settings/filetypes.vim
source ~/.vim/settings/plugins.vim
if filereadable(glob("~/.vim/settings/_os_specific.vim"))
source ~/.vim/settings/_os_specific.vim
endif