-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc.bundles.local
More file actions
38 lines (38 loc) · 1.13 KB
/
vimrc.bundles.local
File metadata and controls
38 lines (38 loc) · 1.13 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
UnPlug 'ale'
UnPlug 'w0rp/ale'
UnPlug 'ALE'
Plug 'vim-syntastic/syntastic'
Plug 'https://github.com/majutsushi/tagbar.git'
Plug 'https://github.com/vim-airline/vim-airline'
Plug 'https://github.com/vim-airline/vim-airline-themes'
Plug 'evanleck/vim-svelte'
if has("unix")
let s:uname = system("uname -s")
if s:uname == "Darwin\n"
" Not installing deoplete on Darwin
else
Plug 'Shougo/deoplete.nvim'
let g:deoplete#enable_at_startup = 1
" If vim startup errors are encountered, try:
" 1. Deactivate any python environment
" 2. pip install -U pip
" 3. pip install -U pynvim
" 4. pip3 install -U pynvim
endif
endif
"Plug 'ternjs/tern_for_vim'
Plug 'roxma/nvim-yarp'
Plug 'roxma/vim-hug-neovim-rpc'
Plug 'yuezk/vim-js'
Plug 'maxmellon/vim-jsx-pretty'
"Plug 'leafgarland/typescript-vim'
Plug 'ervandew/supertab'
Plug 'Valloric/YouCompleteMe'
Plug 'SirVer/ultisnips'
Plug 'honza/vim-snippets'
Plug 'HerringtonDarkholme/yats.vim'
"Plug 'preservim/nerdtree' " Uninstalled to use vim-vinegar with netrw
Plug 'andypayne/vim-checkbox'
Plug 'tpope/vim-vinegar'
Plug 'rhysd/vim-clang-format'
Plug 'psf/black', { 'branch': 'stable' }