-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugins.vim
100 lines (80 loc) · 2.54 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
" MAKE SURE WE HAVE PLUG INSTALLED
let vimplug_exists=expand('~/.config/nvim/autoload/plug.vim')
if has('win32')&&!has('win64')
let curl_exists=expand('C:\Windows\Sysnative\curl.exe')
else
let curl_exists=expand('curl')
endif
if !filereadable(vimplug_exists)
if !executable(curl_exists)
echoerr "You have to install curl or first install vim-plug yourself!"
execute "q!"
endif
echo "Installing Vim-Plug..."
echo ""
silent exec "!"curl_exists" -fLo " . shellescape(vimplug_exists) . " --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim"
let g:not_finish_vimplug = "yes"
autocmd VimEnter * PlugInstall
endif
" Required:
call plug#begin(expand('~/.config/nvim/plugged'))
"*****************************************************************************
"" Plug install packages
"*****************************************************************************
Plug 'scrooloose/nerdtree'
Plug 'jistr/vim-nerdtree-tabs'
Plug 'ayu-theme/ayu-vim'
Plug 'zefei/simple-dark'
Plug 'tpope/vim-commentary'
Plug 'tpope/vim-fugitive'
" THEMES
Plug 'dunckr/vim-monokai-soda'
Plug 'vim-airline/vim-airline'
Plug 'NLKNguyen/papercolor-theme'
" Debugger
Plug 'puremourning/vimspector'
"" CONFIG FOR LINTER OUTPUT
Plug 'dense-analysis/ale'
Plug 'mattn/vim-ale-icons'
Plug 'heavenshell/vim-jsdoc', {
\ 'for': ['javascript', 'javascript.jsx','typescript'],
\ 'do': 'make install'
\}
Plug 'vim-airline/vim-airline-themes'
Plug 'airblade/vim-gitgutter'
Plug 'airblade/vim-rooter'
Plug 'majutsushi/tagbar'
Plug 'HenryNewcomer/vim-theme-papaya'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'rhysd/vim-healthcheck'
Plug 'Yggdroot/indentLine'
Plug 'sheerun/vim-polyglot'
Plug 'jiangmiao/auto-pairs'
Plug 'vim-test/vim-test'
" Golang stuff
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' } " Completion and stuff
Plug 'sebdah/vim-delve'
Plug 'OmniSharp/omnisharp-vim'
Plug 'ryanoasis/vim-devicons'
if isdirectory('/usr/bin/fzf')
Plug '/usr/bin/fzf' | Plug 'junegunn/fzf.vim'
else
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --bin' }
Plug 'junegunn/fzf.vim'
endif
let g:make = 'gmake'
if exists('make')
let g:make = 'make'
endif
Plug 'Shougo/vimproc.vim', {'do': g:make}
"" Vim-Session
Plug 'tpope/vim-obsession'
"" NICE TITLE SCREEN
Plug 'mhinz/vim-startify'
"" Snippets
Plug 'SirVer/ultisnips'
Plug 'honza/vim-snippets'
"*****************************************************************************
"" Custom bundles
"*****************************************************************************
call plug#end()