blob: d80f07cf3d77c71b18a4e4bfefdba5c4b37fb8d5 (
plain) (
blame)
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
|
" auto-install vim-plug
if empty(glob('~/.config/nvim/autoload/plug.vim'))
silent !curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
"autocmd VimEnter * PlugInstall
"autocmd VimEnter * PlugInstall | source $MYVIMRC
endif
call plug#begin('~/.config/nvim/autoload/plugged')
" Better Syntax Support
Plug 'sheerun/vim-polyglot'
" Themes
Plug 'arcticicestudio/nord-vim'
Plug 'joshdick/onedark.vim'
" Stable version of coc
Plug 'neoclide/coc.nvim', {'branch': 'release'}
" File Explorer
Plug 'scrooloose/NERDTree'
" Auto pairs for '(' '[' '{'
Plug 'jiangmiao/auto-pairs'
" Delete matching pairs with ds(
Plug 'tpope/vim-surround'
" Auto comment
Plug 'preservim/nerdcommenter'
" Colorize
Plug 'norcalli/nvim-colorizer.lua'
" Airline - Status Line
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
" Snippets
Plug 'honza/vim-snippets'
" Vim-Which-Key > SpaceVim plugin
Plug 'liuchengxu/vim-which-key'
" Git integration
Plug 'mhinz/vim-signify'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-rhubarb'
Plug 'junegunn/gv.vim'
call plug#end()
|