-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage_manager.vim
More file actions
62 lines (60 loc) · 1.95 KB
/
package_manager.vim
File metadata and controls
62 lines (60 loc) · 1.95 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
call plug#begin('~/.local/share/nvim/plugged') " init vim-plug
" Packages
"" Sane Default Config
Plug 'tpope/vim-sensible' " TODO: should check what's inside.
"" Theme
Plug 'mhartington/oceanic-next'
"" Fuzzy Finder
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
"" Grep/Ack/Ag/Rg
Plug 'mileszs/ack.vim'
"" Text Search
Plug 'google/vim-searchindex' " Displays [idx/total] for text searches on bottom left.
"" Tabs
Plug 'mkitt/tabline.vim' " Better formatting of vim tabs.
"" Tree Viewer
Plug 'tpope/vim-vinegar'
"" AutoCompletion
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
"" Code Formatter
Plug 'sbdchd/neoformat'
"" Git
Plug 'tpope/vim-fugitive'
Plug 'shumphrey/fugitive-gitlab.vim' " Allows :GBrowse to open gitlab.com
"" Linting
Plug 'w0rp/ale'
"" Autocomplete pairs -- quote with another quote, open bracket with close bracket etc.
Plug 'Raimondi/delimitMate'
"" Smarter 'undo' -- save history for longer, and branched like a tree.
Plug 'mbbill/undotree'
"" Show Git Line Changes on the Left
Plug 'mhinz/vim-signify'
"" Tree View explorer
Plug 'scrooloose/nerdtree'
Plug 'Xuyuanp/nerdtree-git-plugin'
"" Display guiding lines within code blocks
Plug 'nathanaelkane/vim-indent-guides'
"" Status Line at the bottom
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
"" Golang
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
Plug 'mdempsky/gocode', { 'rtp': 'nvim', 'do': '~/.config/nvim/plugged/gocode/nvim/symlink.sh' }
Plug 'zchee/deoplete-go', {'do': 'make'}
"" JavaScript/Flow
Plug 'pangloss/vim-javascript'
Plug 'wokalski/autocomplete-flow'
"" TypeScript
Plug 'HerringtonDarkholme/yats.vim'
Plug 'mhartington/nvim-typescript', {'do': './install.sh'}
Plug 'Shougo/vimproc.vim', {'do' : 'make'} " Quaramy/Tsuquyomi dependency
Plug 'Quramy/tsuquyomi'
"" JSX/TSX
Plug 'mxw/vim-jsx'
"" Python
Plug 'zchee/deoplete-jedi'
"" Terraform
Plug 'hashivim/vim-terraform'
" Initialize plugin system
call plug#end()