nvim/lua/config/lazy.lua

27 lines
432 B
Lua
Raw Normal View History

2023-01-13 16:24:39 +01:00
require('lazy').setup('plugins', {
defaults = { lazy = true },
2022-12-31 17:43:31 +01:00
change_detection = {
2023-01-13 16:24:39 +01:00
enabled = false,
},
performance = {
2023-06-25 17:10:09 +02:00
reset_packpath = true,
2023-01-13 16:24:39 +01:00
rtp = {
reset = true,
2023-06-25 17:10:09 +02:00
-- paths = { '~/.local/share/nvim/site/' },
2023-01-13 16:24:39 +01:00
disabled_plugins = {
2023-04-08 23:47:10 +02:00
'fzf',
2023-01-13 16:24:39 +01:00
'gzip',
'matchit',
2023-04-08 23:47:10 +02:00
'matchparen',
2023-01-29 13:47:56 +01:00
'netrwPlugin',
'netrw',
2023-01-13 16:24:39 +01:00
'tarPlugin',
'tohtml',
'tutor',
'zipPlugin',
},
},
2022-12-31 17:43:31 +01:00
},
2023-01-13 16:24:39 +01:00
debug = false,
2022-12-31 17:43:31 +01:00
})