-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackages.vim
46 lines (31 loc) · 854 Bytes
/
packages.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
call plug#begin('~/.config/nvim/plugged')
Plug 'tpope/vim-surround'
" org-mode
Plug 'jceb/vim-orgmode'
" Typescript syntax highlighting
Plug 'HerringtonDarkholme/yats.vim'
" Comments
Plug 'tomtom/tcomment_vim'
" Ayu color theme
Plug 'ayu-theme/ayu-vim'
Plug 'yarisgutierrez/ayu-lightline'
" Airline plugin
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
" Add toml syntax
Plug 'cespare/vim-toml'
" Enable rust language support
Plug 'rust-lang/rust.vim'
" syntax highlighting solidity
Plug 'tomlion/vim-solidity'
" Add auto complete
Plug 'neoclide/coc.nvim', {'branch': 'release'}
" Packge versions
Plug 'meain/vim-package-info', { 'do': 'npm install' }
" Tables in markdown
Plug 'junegunn/vim-easy-align'
" Fuzzy file finder
Plug 'ctrlpvim/ctrlp.vim'
" NerdTree file explorer
Plug 'preservim/nerdtree'
call plug#end()