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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
|
lua <<EOF
local lazypath = vim.fn.stdpath('data') .. '/lazy/lazy.nvim'
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
require('lazy').setup({
{
'doums/darcula',
lazy = false,
priority = 1000,
config = function()
vim.cmd([[colorscheme darcula]])
vim.cmd([[set termguicolors]])
vim.cmd([[highlight Normal guibg=NONE ctermbg=NONE]])
end,
},
{
'airblade/vim-gitgutter',
event = 'VimEnter',
config = function()
vim.cmd([[nnoremap <leader>gp <cmd>GitGutterPreviewHunk<CR>]])
vim.cmd([[nnoremap <leader>gu <cmd>GitGutterUndoHunk<CR>]])
end,
},
{
'lukas-reineke/indent-blankline.nvim',
event = 'VimEnter',
config = function()
local hooks = require('ibl.hooks')
hooks.register(
hooks.type.WHITESPACE,
hooks.builtin.hide_first_space_indent_level
)
hooks.register(
hooks.type.WHITESPACE,
hooks.builtin.hide_first_tab_indent_level
)
hooks.register(
hooks.type.HIGHLIGHT_SETUP,
function()
vim.api.nvim_set_hl(0, 'IndentBlanklineChar', { fg = '#303030', nocombine = true })
vim.api.nvim_set_hl(0, 'IndentBlanklineContextChar', { fg = '#404040', nocombine = true })
end
)
require('ibl').setup {
indent = {
highlight = {
'IndentBlanklineChar',
},
},
whitespace = {
remove_blankline_trail = true,
},
scope = {
enabled = false,
highlight = {
'IndentBlanklineContextChar',
},
},
}
end,
},
{ 'gpanders/editorconfig.nvim', event = 'VimEnter' },
{ 'tpope/vim-surround', event = 'VimEnter' },
{ 'sheerun/vim-polyglot', event = 'VimEnter' },
{
'williamboman/mason-lspconfig.nvim',
event = 'VimEnter',
dependencies = {
'williamboman/mason.nvim',
'hrsh7th/cmp-nvim-lsp',
'neovim/nvim-lspconfig',
},
config = function()
local on_attach = function(client, bufnr)
local function buf_set_keymap(...) vim.api.nvim_buf_set_keymap(bufnr, ...) end
local function buf_set_option(...) vim.api.nvim_buf_set_option(bufnr, ...) end
-- Enable completion triggered by <c-x><c-o>
buf_set_option('omnifunc', 'v:lua.vim.lsp.omnifunc')
-- Mappings.
local opts = { noremap=true, silent=true }
-- See :help vim.lsp.* for documentation on any of the below functions
buf_set_keymap('n', 'gD', '<cmd>lua vim.lsp.buf.declaration()<CR>', opts)
buf_set_keymap('n', 'gd', '<cmd>lua vim.lsp.buf.definition()<CR>', opts)
buf_set_keymap('n', 'K', '<cmd>lua vim.lsp.buf.hover()<CR>', opts)
buf_set_keymap('n', 'gi', '<cmd>lua vim.lsp.buf.implementation()<CR>', opts)
buf_set_keymap('n', '<C-k>', '<cmd>lua vim.lsp.buf.signature_help()<CR>', opts)
buf_set_keymap('n', '<space>wa', '<cmd>lua vim.lsp.buf.add_workspace_folder()<CR>', opts)
buf_set_keymap('n', '<space>wr', '<cmd>lua vim.lsp.buf.remove_workspace_folder()<CR>', opts)
buf_set_keymap('n', '<space>wl', '<cmd>lua print(vim.inspect(vim.lsp.buf.list_workspace_folders()))<CR>', opts)
buf_set_keymap('n', '<space>D', '<cmd>lua vim.lsp.buf.type_definition()<CR>', opts)
buf_set_keymap('n', '<space>rn', '<cmd>lua vim.lsp.buf.rename()<CR>', opts)
buf_set_keymap('n', '<space>ca', '<cmd>lua vim.lsp.buf.code_action()<CR>', opts)
buf_set_keymap('n', 'gr', '<cmd>lua vim.lsp.buf.references()<CR>', opts)
buf_set_keymap('n', '<space>e', '<cmd>lua vim.diagnostic.open_float()<CR>', opts)
buf_set_keymap('n', '[d', '<cmd>lua vim.diagnostic.goto_prev()<CR>', opts)
buf_set_keymap('n', ']d', '<cmd>lua vim.diagnostic.goto_next()<CR>', opts)
buf_set_keymap('n', '<space>q', '<cmd>lua vim.diagnostic.setloclist()<CR>', opts)
buf_set_keymap('n', '<space>f', '<cmd>lua vim.lsp.buf.format({async = true})<CR>', opts)
end
local capabilities = vim.lsp.protocol.make_client_capabilities()
capabilities = require('cmp_nvim_lsp').default_capabilities(capabilities)
vim.o.completeopt = 'menuone,noselect'
require('mason').setup()
require('mason-lspconfig').setup()
require('mason-lspconfig').setup_handlers {
function (server_name)
local lspconfig_setup = {
on_attach = on_attach,
capabilities = capabilities,
}
-- server specific config
if server_name == 'volar' then
lspconfig_setup['init_options'] = {
vue = {
hybridMode = false,
}
}
end
require('lspconfig')[server_name].setup(lspconfig_setup)
end
}
-- fix LSPs not attaching to buffer sometimes
local filetypes = {
{
pattern = '*.php',
filetype = 'php',
},
{
pattern = '*.js',
filetype = 'javascript',
},
{
pattern = '*.vue',
filetype = 'vue',
},
{
pattern = '*.twig',
filetype = 'twig',
},
{
pattern = '*.lua',
filetype = 'lua',
},
{
pattern = '*.vim',
filetype = 'vim',
},
{
pattern = '*.mcfunction',
filetype = 'mcfunction',
},
}
for _, entry in ipairs(filetypes) do
vim.api.nvim_create_autocmd({ 'BufEnter' }, {
pattern = { entry['pattern'] },
callback = function(event)
vim.cmd('set filetype=' .. entry['filetype'])
end,
})
end
end,
},
{
'nvim-treesitter/nvim-treesitter',
event = 'VimEnter',
build = function()
vim.cmd([[:TSUpdate]])
end,
config = function()
require('nvim-treesitter.configs').setup {
--ensure_installed = 'all',
sync_install = false,
auto_install = false,
indent = {
enable = true,
},
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
}
vim.cmd([[highlight! link @text.diff.add DiffAdd]])
vim.cmd([[highlight! link @text.diff.delete DiffDelete]])
vim.cmd([[highlight! link @text.diff.change DiffChange]])
vim.cmd([[highlight! link @text.diff.text DiffText]])
end,
},
{
'nvim-treesitter/nvim-treesitter-context',
event = 'CursorMoved',
dependencies = {
'nvim-treesitter/nvim-treesitter',
},
},
{
'nvim-treesitter/nvim-treesitter-refactor',
keys = {
'gnd',
'gnD',
'gO',
},
dependencies = {
'nvim-treesitter/nvim-treesitter',
},
},
{
'sindrets/diffview.nvim',
dependencies = {
'nvim-tree/nvim-web-devicons',
},
cmd = 'DiffviewOpen',
config = function()
require('diffview').setup({})
-- close all windows when Diffview is closed
vim.api.nvim_create_autocmd('QuitPre', {
callback = function()
if vim.bo.filetype == 'DiffviewFiles' then
vim.cmd([[quitall]])
end
end,
})
end,
},
{
'preservim/nerdtree',
dependencies = {
'ryanoasis/vim-devicons',
'Xuyuanp/nerdtree-git-plugin',
},
event = 'BufWinEnter',
config = function()
vim.g.NERDTreeShowHidden = 1
vim.g.NERDTreeGitStatusShowIgnored = 1
vim.g.NERDTreeShowLineNumbers = 1
vim.cmd([[:autocmd BufEnter NERD_* setlocal rnu]])
vim.cmd([[
if !&diff
autocmd StdinReadPre * let s:std_in=1
endif
]])
vim.cmd([[
function NERDTreeInit()
if !&diff
let buffer_type = getbufvar(bufnr(), "&filetype")
if index(g:NERDTreeNoInitFiletypes, buffer_type) == -1
NERDTree
if argc() > 0 || exists('s:std_in')
wincmd p
endif
if argc() > 0
silent NERDTreeFind
wincmd p
endif
endif
endif
endfunction
autocmd VimEnter * call NERDTreeInit()
]])
vim.cmd([[autocmd BufWinEnter * if getcmdwintype() == '' | silent NERDTreeMirror | endif]])
vim.cmd([[autocmd BufEnter * if winnr('$') == 1 && exists('b:NERDTree') && b:NERDTree.isTabTree() | quit | endif]])
vim.cmd([[
" set status line on tab switch
function NERDTreeStatusLineTabSwitch()
" only when in non-meaningful window
if index(g:NERDTreeStatusLineTabSwitchFiletypes, &filetype) == -1
return
endif
let tab_nr = tabpagenr()
let buffer_list = tabpagebuflist(tab_nr)
" default to 2
let meaningful_window_nr = 2
for buffer_nr in buffer_list
let buffer_type = getbufvar(buffer_nr, "&filetype")
if index(g:NERDTreeStatusLineTabSwitchFiletypes, buffer_type) == -1
let meaningful_window_nr = bufwinnr(buffer_nr)
break
endif
endfor
exe meaningful_window_nr .. "wincmd w"
endfunction
autocmd TabLeave * call NERDTreeStatusLineTabSwitch()
]])
vim.cmd([[map <C-b> <cmd>NERDTreeToggle<CR>]])
end,
},
{
'nvim-telescope/telescope.nvim',
cmd = 'Telescope',
dependencies = {
'nvim-lua/plenary.nvim',
},
init = function()
vim.cmd([[nnoremap <leader>ff <cmd>Telescope find_files<CR>]])
vim.cmd([[nnoremap <leader>fg <cmd>Telescope live_grep<CR>]])
vim.cmd([[nnoremap <leader><leader> <cmd>Telescope buffers<CR>]])
end,
},
{
'mg979/vim-xtabline',
event = 'TabEnter',
},
{
'ggandor/leap.nvim',
keys = { 's', 'S' },
config = function()
require('leap').add_default_mappings()
end,
},
{
'iamcco/markdown-preview.nvim',
ft = 'markdown',
build = function()
vim.fn['mkdp#util#install']()
end,
config = function()
vim.g.mkdp_preview_options = {
disable_sync_scroll = 1
}
end,
},
{
'stevearc/aerial.nvim',
dependencies = {
'nvim-telescope/telescope.nvim',
},
cmd = {
'AerialToggle',
'Telescope aerial',
},
init = function()
vim.cmd([[nnoremap <leader>a <cmd>AerialToggle!<CR>]])
vim.cmd([[nnoremap <leader>fa <cmd>Telescope aerial<CR>]])
end,
config = function()
require('aerial').setup({
filter_kind = false,
})
require('telescope').load_extension('aerial')
vim.cmd([[
" add aerial to tab switch filetypes
call add(g:NERDTreeStatusLineTabSwitchFiletypes, 'aerial')
" close Aerial and NERDTree if they are the only remaining windows
function AerialNERDTreeClose()
if winnr('$') != 2
return
endif
let window_filetypes = UtilityWinfiletypes()
if index(window_filetypes, 'aerial') != -1 && index(window_filetypes, 'nerdtree') != -1
" one quit suffices, since aerial and nerdtree close themselves
quit
endif
endfunction
autocmd BufEnter * call AerialNERDTreeClose()
]])
end,
},
{
'numToStr/Comment.nvim',
keys = {
'gcc',
{ 'gc', mode = 'v' },
{ 'gb', mode = 'v' },
},
config = function()
require('Comment').setup()
end,
},
{
'hrsh7th/nvim-cmp',
dependencies = {
'saadparwaiz1/cmp_luasnip',
'L3MON4D3/LuaSnip',
},
event = 'InsertEnter',
config = function()
local cmp = require('cmp')
local luasnip = require('luasnip')
cmp.setup {
snippet = {
expand = function(args)
luasnip.lsp_expand(args.body)
end,
},
mapping = {
['<C-p>'] = cmp.mapping.select_prev_item(),
['<C-n>'] = cmp.mapping.select_next_item(),
['<C-d>'] = cmp.mapping.scroll_docs(-4),
['<C-f>'] = cmp.mapping.scroll_docs(4),
['<C-Space>'] = cmp.mapping.complete(),
['<C-e>'] = cmp.mapping.close(),
['<CR>'] = cmp.mapping.confirm {
behavior = cmp.ConfirmBehavior.Replace,
select = true,
},
['<Tab>'] = function(fallback)
if cmp.visible() then
cmp.select_next_item()
elseif luasnip.expand_or_jumpable() then
luasnip.expand_or_jump()
else
fallback()
end
end,
['<S-Tab>'] = function(fallback)
if cmp.visible() then
cmp.select_prev_item()
elseif luasnip.jumpable(-1) then
luasnip.jump(-1)
else
fallback()
end
end,
},
sources = {
{ name = 'nvim_lsp' },
{ name = 'luasnip' },
},
}
end
},
-- { 'https://gitlab.com/dweipert.de/rclone.nvim' },
{ dir = '~/Projects/rclone.nvim', cmd = 'Rclone' },
-- Optional
{
'ryanoasis/vim-devicons',
lazy = true,
optional = true,
config = function()
-- @see https://github.com/ryanoasis/vim-devicons/issues/235#issuecomment-370112019
vim.cmd([[let g:WebDevIconsUnicodeDecorateFileNodesExtensionSymbols['vue'] = '']])
end
},
{ 'nvim-tree/nvim-web-devicons', lazy = true, optional = true },
{ 'Xuyuanp/nerdtree-git-plugin', lazy = true, optional = true },
})
EOF
|