-
Notifications
You must be signed in to change notification settings - Fork 5
/
plugins.vim
74 lines (72 loc) · 1.99 KB
/
plugins.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
if has('nvim')
call plug#begin('~/.config/nvim/bundle')
else
call plug#begin('~/.vim/bundle')
endif
" Solarized
Plug 'https://github.com/zyedidia/vim-colors-solarized'
" Nerdtree
Plug 'https://github.com/scrooloose/nerdtree'
" Supertab
Plug 'https://github.com/ervandew/supertab'
" Multiple Cursors
Plug 'https://github.com/terryma/vim-multiple-cursors'
" Julia
Plug 'https://github.com/JuliaLang/julia-vim'
" DelimitMate
Plug 'https://github.com/Raimondi/delimitMate'
" Tcomment
Plug 'https://github.com/tomtom/tcomment_vim.git'
" Textobj Entire
Plug 'https://github.com/kana/vim-textobj-entire'
" Textobj User
Plug 'https://github.com/kana/vim-textobj-user'
" Vim Pasta
Plug 'https://github.com/sickill/vim-pasta'
" Snake
Plug 'https://github.com/zyedidia/vim-snake', { 'on': 'Snake' }
" Neomake
Plug 'https://github.com/zyedidia/neomake'
" Move
Plug 'https://github.com/matze/vim-move'
" Ctrlp
Plug 'https://github.com/kien/ctrlp.vim'
" Ctrlp py matcher
Plug 'https://github.com/FelikZ/ctrlp-py-matcher.git'
" Literate
Plug 'https://github.com/zyedidia/literate.vim', { 'for': 'literate' }
" Lightline
Plug 'https://github.com/itchyny/lightline.vim.git'
" Julialint
Plug 'https://github.com/zyedidia/julialint.vim'
" Mundo
Plug 'https://github.com/simnalamburt/vim-mundo.git'
" Ag
Plug 'rking/ag.vim'
" Antlr
Plug 'https://github.com/jrozner/vim-antlr'
" Ctrlsf
Plug 'https://github.com/dyng/ctrlsf.vim'
" Fugitive
Plug 'https://github.com/tpope/vim-fugitive.git'
" Rust
Plug 'https://github.com/rust-lang/rust.vim.git'
" Html 5
Plug 'https://github.com/othree/html5.vim.git'
" Tagbar
Plug 'https://github.com/majutsushi/tagbar'
" Vim-go
Plug 'https://github.com/fatih/vim-go'
" Verilog
Plug 'vhda/verilog_systemverilog.vim'
" Vim pandoc
" Plug 'vim-pandoc/vim-pandoc'
Plug 'vim-pandoc/vim-pandoc-syntax'
Plug 'calviken/vim-gdscript3'
Plug 'jdonaldson/vaxe'
Plug 'Chiel92/vim-autoformat'
Plug 'ziglang/zig.vim'
Plug 'editorconfig/editorconfig-vim'
Plug 'prabirshrestha/vim-lsp'
Plug 'mattn/vim-lsp-settings'
call plug#end()