Mercurial > dotfiles
comparison dot_config/nvim/init.vim @ 286:6dad02f7604f
Clean up plugins
author | zegervdv <zegervdv@me.com> |
---|---|
date | Sun, 06 Sep 2020 18:47:59 +0200 |
parents | d48b05b03ddf |
children | 6744d7605e8b |
comparison
equal
deleted
inserted
replaced
285:d48b05b03ddf | 286:6dad02f7604f |
---|---|
31 else | 31 else |
32 call plug#begin('~/.vim/plugged') | 32 call plug#begin('~/.vim/plugged') |
33 endif | 33 endif |
34 | 34 |
35 " General Plugins | 35 " General Plugins |
36 if !has("nvim") | 36 Plug 'tpope/vim-sensible' |
37 Plug 'tpope/vim-sensible' | |
38 endif | |
39 | 37 |
40 if s:darwin | 38 if s:darwin |
41 Plug 'vim-scripts/gitignore' | 39 Plug 'vim-scripts/gitignore' |
42 endif | 40 endif |
43 | 41 |
76 augroup load_targets | 74 augroup load_targets |
77 autocmd! | 75 autocmd! |
78 autocmd InsertEnter * call plug#load('targets.vim') | autocmd! load_targets | 76 autocmd InsertEnter * call plug#load('targets.vim') | autocmd! load_targets |
79 augroup END | 77 augroup END |
80 Plug 'mhinz/vim-grepper', { 'on' : 'Grepper' } | 78 Plug 'mhinz/vim-grepper', { 'on' : 'Grepper' } |
81 Plug 'wellle/context.vim' | |
82 | 79 |
83 " Indentation | 80 " Indentation |
84 Plug 'nathanaelkane/vim-indent-guides' | 81 Plug 'nathanaelkane/vim-indent-guides' |
85 | 82 |
86 " Command line | 83 " Command line |
87 Plug 'tpope/vim-eunuch', { 'on' : ['Remove', 'Unlink', 'Move', 'Rename', 'Mkdir', 'Chmod', 'Find', 'Locate', 'SudoEdit', 'SudoWrite']} | 84 Plug 'tpope/vim-eunuch', { 'on' : ['Remove', 'Unlink', 'Move', 'Rename', 'Mkdir', 'Chmod', 'Find', 'Locate', 'SudoEdit', 'SudoWrite']} |
88 | 85 |
89 " Undoing | 86 " Undoing |
90 Plug 'sjl/gundo.vim', { 'on': 'GundoToggle' } | 87 Plug 'sjl/gundo.vim', { 'on': 'GundoToggle' } |
91 | |
92 " Pasting | |
93 " Plug 'junegunn/vim-peekaboo' | |
94 | 88 |
95 " Tabs | 89 " Tabs |
96 Plug 'gcmt/taboo.vim' | 90 Plug 'gcmt/taboo.vim' |
97 | 91 |
98 " Other | 92 " Other |
100 Plug 'tpope/vim-apathy' | 94 Plug 'tpope/vim-apathy' |
101 | 95 |
102 " Tmux | 96 " Tmux |
103 Plug 'christoomey/vim-tmux-navigator' | 97 Plug 'christoomey/vim-tmux-navigator' |
104 Plug 'tmux-plugins/vim-tmux-focus-events' | 98 Plug 'tmux-plugins/vim-tmux-focus-events' |
105 " Plug 'roxma/vim-tmux-clipboard' | |
106 | 99 |
107 " Background make | 100 " Background make |
108 " Plug 'skywind3000/asyncrun.vim' | |
109 Plug 'tpope/vim-dispatch' | 101 Plug 'tpope/vim-dispatch' |
110 | 102 |
111 " Completing and snippets | 103 " Completing and snippets |
112 Plug 'sirver/ultisnips' | 104 Plug 'sirver/ultisnips' |
113 Plug 'honza/vim-snippets' | 105 Plug 'honza/vim-snippets' |
124 | 116 |
125 " Copying | 117 " Copying |
126 Plug 'ShikChen/osc52.vim' | 118 Plug 'ShikChen/osc52.vim' |
127 | 119 |
128 " Vim file navigation | 120 " Vim file navigation |
129 " Plug 'tpope/vim-vinegar' | |
130 Plug 'justinmk/vim-dirvish' | 121 Plug 'justinmk/vim-dirvish' |
131 Plug 'tpope/vim-projectionist' | 122 Plug 'tpope/vim-projectionist' |
132 | 123 |
133 " Theme | 124 " Theme |
134 Plug 'NLKNguyen/papercolor-theme' | 125 Plug 'NLKNguyen/papercolor-theme' |
135 Plug 'joshdick/onedark.vim' | |
136 Plug 'rakr/vim-one' | 126 Plug 'rakr/vim-one' |
137 | 127 |
138 "Tcl | 128 "Tcl |
139 Plug 'vim-scripts/tcl.vim--smithfield-indent', { 'for': 'tcl'} | 129 Plug 'vim-scripts/tcl.vim--smithfield-indent', { 'for': 'tcl'} |
140 | 130 |
141 " Plug 'zegervdv/ale', { 'branch': 'add_verible' } | |
142 Plug 'dense-analysis/ale' | 131 Plug 'dense-analysis/ale' |
143 Plug 'sbdchd/neoformat' | 132 Plug 'sbdchd/neoformat' |
144 | |
145 " Debugging | |
146 Plug 'sakhnik/nvim-gdb', { 'do': ':!./install.sh \| UpdateRemotePlugins' } | |
147 | 133 |
148 Plug 'Glench/Vim-Jinja2-Syntax' | 134 Plug 'Glench/Vim-Jinja2-Syntax' |
149 | 135 |
150 if s:darwin | 136 if s:darwin |
151 " Ruby | 137 " Ruby |