diff --git a/.chezmoiignore b/.chezmoiignore index 84e4977..f50f340 100644 --- a/.chezmoiignore +++ b/.chezmoiignore @@ -6,3 +6,4 @@ dot_config/doom/init.el dot_config/doom/config.el dot_config/doom/packages.el dot_config/nvim/lazy-lock.json +dot_config/nvim/lazyvim.json diff --git a/dot_config/nvim/lazyvim.json b/dot_config/nvim/lazyvim.json deleted file mode 100644 index e42209f..0000000 --- a/dot_config/nvim/lazyvim.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "extras": [ - "lazyvim.plugins.extras.coding.yanky", - "lazyvim.plugins.extras.editor.aerial", - "lazyvim.plugins.extras.editor.leap", - "lazyvim.plugins.extras.util.project" - ], - "news": { - "NEWS.md": "2123" - }, - "version": 2 -} \ No newline at end of file diff --git a/dot_config/nvim/lua/config/lazy.lua b/dot_config/nvim/lua/config/lazy.lua index bd36c74..7ac36f1 100644 --- a/dot_config/nvim/lua/config/lazy.lua +++ b/dot_config/nvim/lua/config/lazy.lua @@ -14,18 +14,13 @@ require("lazy").setup({ { import = "lazyvim.plugins.extras.coding.yanky" }, { import = "lazyvim.plugins.extras.editor.aerial" }, { import = "lazyvim.plugins.extras.editor.leap" }, - { import = "lazyvim.plugins.extras.util.project" }, + { import = "lazyvim.plugins.extras.lang.rust" }, -- import/override with your plugins { import = "plugins" }, }, defaults = { - -- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup. - -- If you know what you're doing, you can set this to `true` to have all your custom plugins lazy-loaded by default. lazy = false, - -- It's recommended to leave version=false for now, since a lot the plugin that support versioning, - -- have outdated releases, which may break your Neovim install. version = false, -- always use the latest git commit - -- version = "*", -- try installing the latest stable version for plugins that support semver }, install = { colorscheme = { "tokyonight", "habamax" } }, checker = { enabled = true }, -- automatically check for plugin updates