-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplug.vim
53 lines (45 loc) · 1.65 KB
/
plug.vim
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
53
" -----------------------
" Plug Configurations
" -----------------------
" Start Plug Setup
call plug#begin('~/.vim/plugged')
" Imports
runtime cosmetic.vim
Plug 'Shougo/vimfiler.vim'
Plug 'Shougo/unite.vim'
" Add icons and stuff
Plug 'ryanoasis/vim-devicons'
" Configureless Plugins
Plug 'Raimondi/delimitMate' " Automatically close quotes, brackets etc
Plug 'tpope/vim-surround' " Add, remove, change surround quote, brackets, etc
Plug 'editorconfig/editorconfig-vim' " Load editor configurations for each project
Plug 'mhinz/vim-startify' " Better Vim Startup Screen
Plug 'wikitopian/hardmode' " Hard mode is Hard :/
Plug 'jmcantrell/vim-virtualenv' " Virtual-env
" Just a nice Linter
Plug 'scrooloose/syntastic'
let g:syntastic_check_on_wq = 1
" Great plugin moving around a file
Plug 'easymotion/vim-easymotion'
let g:EasyMotion_smartcase = 1 " Case Insensitive
nmap s <Plug>(easymotion-overwin-f2)
" Show code diff lines on the ruler column
Plug 'mhinz/vim-signify'
let g:signify_update_on_focus_gaines = 1
" Fuzzy file searcher (ctrl+p)
Plug 'kien/ctrlp.vim'
" Re-use startify screen with ctrp
let g:ctrlp_reuse_window = 'startify'
" Ignore files from .gitignore
let g:ctrlp_user_command = ['.git/', 'git --git-dir=%s/.git ls-files -oc --exclude-standard']
" Use the nearest .git directory as the cwd
let g:ctrlp_working_path_mode = 'r'
" Cool Buffer intereactive listing
Plug 'jeetsukumaran/vim-buffergator'
" Use the right side of the screen
let g:buffergator_viewport_split_policy = 'R'
" End Plug Setup
" Identation Guidelines
Plug 'Yggdroot/indentLine'
let g:indentLine_char = '┆'
call plug#end()