X-Git-Url: https://git.rmz.io/dotfiles.git/blobdiff_plain/e9798ff294de57a0dd98d6cb8d6d57bdcc190aa3..fdd63454b51a35418ec23d3489cf20ae66a2299d:/nvim/lua/config/lazy.lua?ds=sidebyside diff --git a/nvim/lua/config/lazy.lua b/nvim/lua/config/lazy.lua index 891b190..b88ded7 100644 --- a/nvim/lua/config/lazy.lua +++ b/nvim/lua/config/lazy.lua @@ -16,6 +16,7 @@ require("lazy").setup({ -- { import = "lazyvim.plugins.extras.ui.mini-animate" }, -- import/override with your plugins { import = "plugins" }, + { import = "plugins.lang" }, }, defaults = { -- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup. @@ -27,15 +28,21 @@ require("lazy").setup({ -- version = "*", -- try installing the latest stable version for plugins that support semver }, install = { colorscheme = { "tokyonight", "habamax" } }, - checker = { enabled = true }, -- automatically check for plugin updates + checker = { + -- automatically check for plugin updates + enabled = true, + notify = false, + }, performance = { rtp = { + -- HACK: do not reset rtp to allow interop with vim-plug + reset = false, -- disable some rtp plugins disabled_plugins = { "gzip", -- "matchit", -- "matchparen", - -- "netrwPlugin", + "netrwPlugin", "tarPlugin", "tohtml", "tutor",