X-Git-Url: https://git.madduck.net/etc/lazyvim.git/blobdiff_plain/bd3c4d475bab6e50b256a41ac66efc90b47cde18..2c071be78a0700505e18f226e2e4799485c27ece:/.config/lazyvim/lua/config/lazy.lua?ds=sidebyside diff --git a/.config/lazyvim/lua/config/lazy.lua b/.config/lazyvim/lua/config/lazy.lua index d73bfa1..1593856 100644 --- a/.config/lazyvim/lua/config/lazy.lua +++ b/.config/lazyvim/lua/config/lazy.lua @@ -30,16 +30,16 @@ require("lazy").setup({ version = false, -- always use the latest git commit -- version = "*", -- try installing the latest stable version for plugins that support semver }, - install = { colorscheme = { "tokyonight", "habamax" } }, + -- install = { colorscheme = { "tokyonight", "habamax" } }, checker = { - enabled = true, -- check for plugin updates periodically + enabled = false, -- check for plugin updates periodically notify = false, -- notify on update }, -- automatically check for plugin updates performance = { rtp = { -- disable some rtp plugins disabled_plugins = { - "gzip", + -- "gzip", -- "matchit", -- "matchparen", -- "netrwPlugin", @@ -50,4 +50,8 @@ require("lazy").setup({ }, }, }, + ---@diagnostic disable-next-line: assign-type-mismatch + dev = { + path = "~/code", + }, })