-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.vimrc.plug
More file actions
71 lines (46 loc) · 1.4 KB
/
.vimrc.plug
File metadata and controls
71 lines (46 loc) · 1.4 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
call plug#begin('~/.vim/plugged')
" " Figitive Vim Github Wrapper
Plug 'tpope/vim-fugitive'
" Surround for vim
Plug 'tpope/vim-surround'
" Nerd tree
Plug 'scrooloose/nerdtree'
" Lightline statusbar==
Plug 'itchyny/lightline.vim'
" Dracula theme
Plug 'dracula/vim', { 'as': 'dracula' }
" Vim repeat
Plug 'tpope/vim-repeat'
" Vim commentary
Plug 'tpope/vim-commentary'
" Plug 'rip-rip/clang_complete' " For servers to be simpler
" Plug 'valloric/youcompleteme'
Plug 'davidhalter/jedi-vim'
" autor pair
" Plug 'jiangmiao/auto-pairs'
" Plug 'townk/vim-autoclose'
" Well ..
Plug 'CrossR/vim-fhicl'
" Syntax package
Plug 'sheerun/vim-polyglot'
"{{ Syntax Highlighting and Colors }}
" Plug 'PotatoesMaster/i3-vim-syntax' " i3 config highlighting
" Plug 'kovetskiy/sxhkd-vim' " sxhkd highlighting
Plug 'vim-python/python-syntax' " Python highlighting
Plug 'ap/vim-css-color' " Color previews for CSS
" Some closing tags for xml files
Plug 'alvan/vim-closetag'
" For fast change tags
Plug 'andrewradev/tagalong.vim'
" Well.. easy align
Plug 'junegunn/vim-easy-align'
" Vim undo tree
Plug 'mbbill/undotree'
" Show matches from search
Plug 'google/vim-searchindex'
" For jump in indentation
Plug 'jeetsukumaran/vim-indentwise'
" for moving easily :P
Plug 'easymotion/vim-easymotion'
Plug 'SirVer/ultisnips'
call plug#end()