diff options
| author | Robert Günzler <r@gnzler.io> | 2026-02-13 18:08:30 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2026-02-13 18:08:30 +0100 |
| commit | 8afe3fa8d88ae56e96f65897935ef508581ac5f7 (patch) | |
| tree | 8e199f0aad89babaa5c460bd4d5ebdbd746ab615 /.config/nvim/lua/config/lazy.lua | |
| parent | 63feeb9f369fc6176e85c1c2d8fcc863caad1946 (diff) | |
*
Automated-commit-by: dots Signed-off-by: Robert Günzler <r@gnzler.io>
Diffstat (limited to '.config/nvim/lua/config/lazy.lua')
| -rw-r--r-- | .config/nvim/lua/config/lazy.lua | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.config/nvim/lua/config/lazy.lua b/.config/nvim/lua/config/lazy.lua index 5f859f0..81178a5 100644 --- a/.config/nvim/lua/config/lazy.lua +++ b/.config/nvim/lua/config/lazy.lua @@ -28,6 +28,32 @@ require('lazy').setup({ enabled = true, frequency = (3600 * 24 * 3), -- 3 days }, + performance = { + rtp = { + disabled_plugins = { + '2html_plugin', + 'getscript', + 'getscriptPlugin', + 'gzip', + 'logiPat', + 'matchit', + 'netrw', + 'netrwFileHandlers', + 'netrwPlugin', + 'netrwSettings', + 'rrhelper', + 'tar', + 'tarPlugin', + 'tohtml', + 'tutor', + 'vimball', + 'vimballPlugin', + 'zip', + 'zipPlugin', + }, + }, + }, + }) vim.keymap.set({'n'}, '<leader>l', '<nop>', { desc = 'lazy' }) |