-
Notifications
You must be signed in to change notification settings - Fork 0
/
01_bundle.vim
177 lines (146 loc) · 4.95 KB
/
01_bundle.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
" filetype off
call plug#begin('~/.vim/bundle')
" -- general vim libs --
Plug 'ray-x/guihua.lua', { 'do': 'cd lua/fzy && make' }
Plug 'nvim-lua/plenary.nvim'
Plug 'MunifTanjim/nui.nvim'
Plug 'folke/neodev.nvim' " Vim development
" -- editor --
Plug 'tiagovla/scope.nvim' " Make buffers scoped to tab page
Plug 'folke/which-key.nvim' " Display key definitions in cool menu
Plug 'simeji/winresizer' " Resize windows with ctrl+e
Plug 'AndrewRadev/linediff.vim' " Diff between lines
" -- editing --
Plug 'tpope/vim-commentary'
Plug 'vim-scripts/CursorLineCurrentWindow'
Plug 'junegunn/vim-easy-align'
Plug 'AndrewRadev/splitjoin.vim'
Plug 'gcmt/wildfire.vim' " Cycle thought text objects
Plug 'jinh0/eyeliner.nvim' " Move faster with unique f/F indicators for each word on the line.
Plug 'dhruvasagar/vim-table-mode' " Table-mode support
Plug 'abecodes/tabout.nvim'
" -- tree-sitter --
Plug 'nvim-treesitter/nvim-treesitter'
Plug 'nvim-treesitter/playground'
Plug 'SmiteshP/nvim-gps'
" -- lsp --
Plug 'neovim/nvim-lspconfig'
Plug 'onsails/lspkind.nvim'
Plug 'RishabhRD/popfix'
Plug 'RishabhRD/nvim-lsputils'
Plug 'zeioth/garbage-day.nvim' " stop inactive lsp servers
" -- code completion --
Plug 'iguanacucumber/magazine.nvim', { 'as': 'nvim-cmp' }
Plug 'iguanacucumber/mag-nvim-lsp', { 'as': 'cmp-nvim-lsp' }
Plug 'iguanacucumber/mag-buffer', { 'as': 'cmp-buffer' }
Plug 'iguanacucumber/mag-cmdline', { 'as': 'cmp-cmdline' }
Plug 'https://codeberg.org/FelipeLema/cmp-async-path'
Plug 'hrsh7th/cmp-path'
Plug 'hrsh7th/cmp-nvim-lsp-document-symbol'
Plug 'ray-x/lsp_signature.nvim'
Plug 'quangnguyen30192/cmp-nvim-tags'
Plug 'hrsh7th/cmp-omni'
" Plug 'saadparwaiz1/cmp_luasnip'
" -- snippets --
Plug 'rafamadriz/friendly-snippets'
Plug 'garymjr/nvim-snippets'
" -- pairs --
Plug 'adelarsq/vim-matchit'
Plug 'windwp/nvim-autopairs' " Auto close quotes and other pairs
Plug 'echasnovski/mini.ai' " additional text objects
Plug 'echasnovski/mini.surround' " change surroundings on fly
" -- life_quality --
Plug 'mbbill/undotree' " undo explorer
Plug 'gbprod/yanky.nvim' " yank explorer
" -- search_tools --
Plug 'jremmen/vim-ripgrep'
Plug 'eugen0329/vim-esearch'
Plug 'romainl/vim-cool'
Plug 'MagicDuck/grug-far.nvim'
" -- ui --
Plug 'kevinhwang91/nvim-bqf' " Better quickfix
Plug 'goolord/alpha-nvim' " Starup dashboard
Plug 'nvim-lualine/lualine.nvim' " Statusline
Plug 'nanozuki/tabby.nvim' " Custom tabline
Plug 'lewis6991/hover.nvim' " LSP doc on hover
Plug 'scrooloose/nerdtree' " Sidebar filemanagers
Plug 'nvim-neo-tree/neo-tree.nvim' " Modern file tree
Plug 'j-hui/fidget.nvim' " Notifications
Plug 'dgagn/diagflow.nvim' " LSP diagnostics in virtual text at the top right of your screen
Plug 'stevearc/overseer.nvim' " Command runner with ui
Plug 'SmiteshP/nvim-navic' " Show lsp path in window header
Plug 'petertriho/nvim-scrollbar' " Custom scrollbar
" -- start dashboard --
Plug 'goolord/alpha-nvim'
" -- git --
Plug 'tpope/vim-fugitive'
Plug 'lewis6991/gitsigns.nvim'
" -- tests --
Plug 'tpope/vim-dispatch'
Plug 'janko-m/vim-test'
Plug 'nvim-neotest/nvim-nio'
Plug 'nvim-neotest/neotest'
Plug 'olimorris/neotest-rspec'
" -- ctags --
Plug 'ludovicchabant/vim-gutentags'
Plug 'majutsushi/tagbar'
" -- fzf --
Plug '/opt/homebrew/opt/fzf'
Plug 'junegunn/fzf.vim'
" -- languages --
Plug 'tpope/vim-rbenv'
Plug 'vim-ruby/vim-ruby'
Plug 'tpope/vim-rails'
Plug 'tpope/vim-bundler'
Plug 'tpope/vim-endwise'
Plug 'tpope/vim-haml'
Plug 'plasticboy/vim-markdown'
Plug 'jelera/vim-javascript-syntax'
Plug 'pangloss/vim-javascript'
Plug 'MaxMEllon/vim-jsx-pretty'
Plug 'mitsuhiko/jinja2'
Plug 'leafgarland/typescript-vim'
Plug 'peitalin/vim-jsx-typescript'
Plug 'elixir-editors/vim-elixir'
Plug 'slashmili/alchemist.vim'
Plug 'racer-rust/vim-racer'
Plug 'rust-lang/rust.vim'
Plug 'lepture/vim-jinja'
Plug 'ap/vim-css-color'
Plug 'pearofducks/ansible-vim'
Plug 'ekalinin/Dockerfile.vim'
Plug 'chr4/nginx.vim'
Plug 'slim-template/vim-slim'
Plug 'vim-utils/vim-man'
" -- Lsp & tree-sitter support --
Plug 'nvim-tree/nvim-web-devicons'
" -- Golang support --
Plug 'ray-x/go.nvim'
" TODO move to group
Plug 'mfussenegger/nvim-lint'
" -- colorschemes --
Plug 'rktjmp/lush.nvim'
Plug 'rockyzhang24/arctic.nvim', { 'branch': 'v2' }
Plug 'Mofiqul/adwaita.nvim'
Plug 'navarasu/onedark.nvim'
Plug 'ChrisKempson/Tomorrow-Theme', { 'rtp': 'vim' }
Plug 'yorik1984/newpaper.nvim'
Plug 'oneslash/helix-nvim'
Plug 'savq/melange-nvim'
Plug 'projekt0n/github-nvim-theme'
Plug 'lunacookies/vim-colors-xcode'
Plug 'metalelf0/jellybeans-nvim'
" 'RRethy/nvim-base16'
" cool light themes
Plug 'Verf/deepwhite.nvim'
Plug 'MetriC-DT/balance-theme.nvim'
Plug 'deparr/tairiki.nvim'
" minimal style themes
Plug 'davidosomething/vim-colors-meh'
Plug 'kkga/vim-envy'
Plug 'slugbyte/lackluster.nvim'
" -- in_development --
Plug 'pechorin/any-jump.vim'
Plug 'pechorin/u-keymapper.vim'
Plug 'pechorin/vim-leuven-theme'
call plug#end()