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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
|
local execute = vim.api.nvim_command
local fn = vim.fn
local install_path = fn.stdpath("data") .. "/site/pack/packer/start/packer.nvim"
if fn.empty(fn.glob(install_path)) > 0 then
execute("!git clone https://github.com/wbthomason/packer.nvim " ..
install_path)
execute "packadd packer.nvim"
end
--- Check if a file or directory exists in this path
local function require_plugin(plugin)
local plugin_prefix = fn.stdpath("data") .. "/site/pack/packer/opt/"
local plugin_path = plugin_prefix .. plugin .. "/"
-- print('test '..plugin_path)
local ok, err, code = os.rename(plugin_path, plugin_path)
if not ok then
if code == 13 then
-- Permission denied, but it exists
return true
end
end
-- print(ok, err, code)
if ok then vim.cmd("packadd " .. plugin) end
return ok, err, code
end
-- vim.cmd "autocmd BufWritePost plugins.lua PackerCompile" -- Auto compile when there are changes in plugins.lua
return require("packer").startup(function(use)
-- Packer can manage itself as an optional plugin
use "wbthomason/packer.nvim"
-- TODO refactor all of this (for now it works, but yes I know it could be wrapped in a simpler function)
use {
"neovim/nvim-lspconfig"
-- event = "BufRead",
-- config = function()
-- require("lsp").config()
-- end
}
use {
"glepnir/lspsaga.nvim"
-- event = "BufRead",
-- opt = true
}
use {
"kabouzeid/nvim-lspinstall"
-- event = "BufRead",
-- opt = true
}
-- Telescope
use {
"nvim-lua/popup.nvim"
-- opt = true
}
use {
"nvim-lua/plenary.nvim"
-- opt = true
}
use {
"nvim-telescope/telescope.nvim"
-- cmd = "Telescope",
-- opt = true
}
-- Autocomplete
use {
"hrsh7th/nvim-compe",
config = function()
require("lv-compe").config()
end,
event = "InsertEnter"
}
-- Treesitter
use {
"nvim-treesitter/nvim-treesitter",
-- event = "BufRead",
-- config = function()
-- require('lv-treesitter').config()
-- end,
run = ":TSUpdate"
}
-- Explorer
-- use {"kyazdani42/nvim-tree.lua", opt = true}
use {
"kyazdani42/nvim-tree.lua",
cmd = "NvimTreeToggle",
config = function()
-- require_plugin("lv-nvimtree")
require("lv-nvimtree").config()
end
-- opt = true
}
-- use {'lukas-reineke/indent-blankline.nvim', opt=true, branch = 'lua'}
use {
"lewis6991/gitsigns.nvim",
config = function()
-- require_plugin("nvim-compe")
require("lv-gitsigns").config()
end,
event = "BufRead"
-- opt = true
}
use {
"folke/which-key.nvim"
-- opt = true
}
use {
"windwp/nvim-autopairs"
-- event = "InsertEnter",
-- opt = true
}
-- Comments
use {
"terrortylor/nvim-comment",
cmd = "CommentToggle",
config = function()
require('nvim_comment').setup()
end
-- opt = true
}
-- Color
use {"christianchiarulli/nvcode-color-schemes.vim", opt = true}
-- Icons
use {
"kyazdani42/nvim-web-devicons"
-- opt = true
}
-- Status Line and Bufferline
use {
"glepnir/galaxyline.nvim"
-- opt = true
}
use {
"romgrk/barbar.nvim",
config = function()
-- require_plugin("barbar.nvim")
vim.api.nvim_set_keymap('n', '<TAB>', ':BufferNext<CR>',
{noremap = true, silent = true})
vim.api.nvim_set_keymap('n', '<S-TAB>', ':BufferPrevious<CR>',
{noremap = true, silent = true})
vim.api.nvim_set_keymap('n', '<S-x>', ':BufferClose<CR>',
{noremap = true, silent = true})
end
-- opt = true
}
use {
"hrsh7th/vim-vsnip"
-- opt = true
}
-- require_plugin("nvim-lspconfig")
-- require_plugin("lspsaga.nvim")
-- require_plugin("nvim-lspinstall")
-- require_plugin("popup.nvim")
-- require_plugin("plenary.nvim")
-- require_plugin("telescope.nvim")
-- require_plugin("nvim-treesitter")
-- require_plugin("nvim-comment")
-- require_plugin("nvim-tree.lua")
-- require_plugin("gitsigns.nvim")
-- require_plugin("which-key.nvim")
-- require_plugin("nvim-autopairs")
-- require_plugin("nvim-web-devicons")
-- require_plugin("galaxyline.nvim")
-- require_plugin("vim-vsnip")
-- Extras
if O.extras then
-- Interactive scratchpad
use {'metakirby5/codi.vim', opt = true}
require_plugin('codi.vim')
-- Markdown preview
use {
'iamcco/markdown-preview.nvim',
run = 'cd app && npm install',
opt = true
}
require_plugin('markdown-preview.nvim')
-- Floating terminal
use {'numToStr/FTerm.nvim', opt = true}
require_plugin('FTerm.nvim')
-- Enhanced increment/decrement
use {'monaqa/dial.nvim', opt = true}
require_plugin('dial.nvim')
-- Peek lines
use {'nacro90/numb.nvim', opt = true}
require_plugin('numb.nvim')
-- HTML preview
use {
'turbio/bracey.vim',
run = 'npm install --prefix server',
opt = true
}
require_plugin('bracey.vim')
-- Better motions
use {'phaazon/hop.nvim', opt = true}
require_plugin('hop.nvim')
-- Colorizer
use {'norcalli/nvim-colorizer.lua', opt = true}
require_plugin('nvim-colorizer.lua')
-- Search & Replace
use {'windwp/nvim-spectre', opt = true}
require_plugin('nvim-spectre')
use {'simrat39/symbols-outline.nvim', opt = true}
require_plugin('symbols-outline.nvim')
-- Treesitter playground
use {'nvim-treesitter/playground', opt = true}
require_plugin('playground')
-- Latex
use {"lervag/vimtex", opt = true}
require_plugin("vimtex")
-- matchup
use {'andymass/vim-matchup', opt = true}
require_plugin('vim-matchup')
-- comments in context
use {'JoosepAlviste/nvim-ts-context-commentstring', opt = true}
require_plugin("nvim-ts-context-commentstring")
-- Zen Mode
use {"Pocco81/TrueZen.nvim", opt = true}
require_plugin("TrueZen.nvim")
-- Git extras
use {'f-person/git-blame.nvim', opt = true}
require_plugin("git-blame.nvim")
-- TODO remove when open on dir is supported by nvimtree
-- use "kevinhwang91/rnvimr"
use {"nvim-telescope/telescope-fzy-native.nvim", opt = true}
use {"nvim-telescope/telescope-project.nvim", opt = true}
require_plugin('telescope-project.nvim')
-- Debugging
use {"mfussenegger/nvim-dap", opt = true}
require_plugin("nvim-dap")
use {"rafamadriz/friendly-snippets", opt = true}
require_plugin("friendly-snippets")
use {"kevinhwang91/nvim-bqf", opt = true}
require_plugin("nvim-bqf")
use {"ahmedkhalf/lsp-rooter.nvim", opt = true} -- with this nvim-tree will follow you
require_plugin('lsp-rooter.nvim')
use {"ChristianChiarulli/dashboard-nvim", opt = true}
require_plugin("dashboard-nvim")
use {"folke/trouble.nvim", opt = true}
require_plugin('trouble.nvim')
-- Sane gx for netrw_gx bug
use {"felipec/vim-sanegx", opt = true}
-- Autotag
-- use {"windwp/nvim-ts-autotag", opt = true}
-- require_plugin("nvim-ts-autotag")
-- folke/todo-comments.nvim
-- gennaro-tedesco/nvim-jqx
-- TimUntersberger/neogit
-- folke/lsp-colors.nvim
-- simrat39/symbols-outline.nvim
-- Git
-- use {'tpope/vim-fugitive', opt = true}
-- use {'tpope/vim-rhubarb', opt = true}
-- pwntester/octo.nvim
-- Easily Create Gists
-- use {'mattn/vim-gist', opt = true}
-- use {'mattn/webapi-vim', opt = true}
end
end)
|