nvim/lua/config/lazy.lua

34 lines
562 B
Lua
Raw Normal View History

2023-01-13 16:24:39 +01:00
require('lazy').setup('plugins', {
defaults = { lazy = true },
checker = { enabled = false },
diff = {
cmd = 'terminal_git',
},
2022-12-31 17:43:31 +01:00
change_detection = {
2023-01-13 16:24:39 +01:00
enabled = false,
},
performance = {
cache = {
enabled = true,
-- disable_events = {},
},
rtp = {
reset = true,
paths = {"~/.local/share/nvim/site/"},
disabled_plugins = {
'gzip',
'matchit',
-- "matchparen",
2023-01-22 16:48:31 +01:00
"netrwPlugin",
"netrw",
2023-01-13 16:24:39 +01:00
'tarPlugin',
'tohtml',
'tutor',
'zipPlugin',
'nvim-treesitter-textobjects',
},
},
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
})