-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvimrc.plugins
More file actions
58 lines (50 loc) · 1.49 KB
/
vimrc.plugins
File metadata and controls
58 lines (50 loc) · 1.49 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
Plug 'ctrlpvim/ctrlp.vim'
Plug 'ntpeters/vim-better-whitespace'
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'scrooloose/nerdtree'
" Git
Plug 'airblade/vim-gitgutter', {'branch': 'main'}
Plug 'tpope/vim-fugitive'
Plug 'vim-scripts/vcscommand.vim'
" VIM Script Library
Plug 'vim-scripts/L9'
"
"Plug 'dense-analysis/ale'
Plug 'fatih/vim-go'
Plug 'rust-lang/rust.vim'
Plug 'ekalinin/Dockerfile.vim'
Plug 'tomtom/tcomment_vim'
Plug 'tpope/vim-dispatch'
Plug 'junegunn/vim-easy-align'
Plug 'xolox/vim-misc'
Plug 'majutsushi/tagbar'
Plug 'diepm/vim-rest-console'
Plug 'vim-syntastic/syntastic'
Plug 'editorconfig/editorconfig-vim'
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
" colorschemes
Plug 'vim-scripts/tir_black'
Plug 'vim-scripts/molokai'
Plug 'vim-scripts/Mustang2'
Plug 'vim-scripts/badwolf'
Plug 'nanotech/jellybeans.vim'
Plug 'altercation/vim-colors-solarized'
Plug 'vim-scripts/Railscasts-Theme-GUIand256color'
Plug 'w0ng/vim-hybrid'
Plug 'google/vim-colorscheme-primary'
Plug 'vim-scripts/twilight'
Plug 'wesgibbs/vim-irblack'
Plug 'morhetz/gruvbox'
Plug 'tomasiser/vim-code-dark'
Plug 'romainl/apprentice'
Plug 'chazy/cscope_maps'
Plug 'vim-jp/vim-cpp' "Vim syntax files with C++11 suppor
Plug 'junegunn/vim-peekaboo'
"Plug 'ludovicchabant/vim-gutentags' "tags management
"Plug 'wellle/context.vim'
"Plug 'neoclide/coc.nvim', {'branch': 'release'}
" Tabby plugin
Plug 'TabbyML/vim-tabby'
" Add config here. Example config:
let g:tabby_keybinding_accept = '<Tab>'