-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins.vim
67 lines (49 loc) · 1.96 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
" =============================================================================
" ==/ ------- -------- \==
" Plugin Declarations
" ==\ ------- -------- /==
" =============================================================================
call plug#begin()
" -----------------------------------------------------------------------------
"
" ==| ------- 1. Editor -------- |==
"
" CoC for code-completion, linting, and autoformatting
Plug 'neoclide/coc.nvim', {'branch': 'release'}
let g:coc_global_extensions = [
\ 'coc-tsserver',
\ 'coc-jedi'
\ ]
" NERDTree for file browsing
Plug 'preservim/nerdtree'
" Airline for a fancier statusline
Plug 'vim-airline/vim-airline'
"
" ==| ------- 2. Functionality -------- |==
"
" FZF for fuzzy finding. :Ag, :GFiles?, and :Changes are great commands
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
" DelimitMate for closing pairs automatically '[({})]'
Plug 'Raimondi/delimitMate'
" Tabular for aligning multiple lines around their respective ':' and '=' chars
Plug 'godlygeek/tabular'
" Cursorword for highlighting other instances of names inside file
Plug 'itchyny/vim-cursorword'
" Terraform support + syntax highlighting
Plug 'hashivim/vim-terraform'
"
" ==| ------- 3. Theme -------- |==
"
" Syntax Higlighters
Plug 'pangloss/vim-javascript'
Plug 'leafgarland/typescript-vim'
Plug 'peitalin/vim-jsx-typescript'
Plug 'tikhomirov/vim-glsl'
Plug 'plasticboy/vim-markdown'
Plug 'posva/vim-vue'
" VimDevIcons to add icons to NERDTree. Must be using a "Nerd Font" compatible
" font. This plugin must come last in the load order.
Plug 'ryanoasis/vim-devicons'
" -----------------------------------------------------------------------------
call plug#end()