♻️ refactor(nvim): use lazy.nvim native lazyrc spec instead of custom extra
This commit is contained in:
parent
4541528ba1
commit
c4aba759d0
1 changed files with 7 additions and 3 deletions
|
@ -12,10 +12,13 @@ require("lazy").setup({
|
||||||
{
|
{
|
||||||
"LazyVim/LazyVim",
|
"LazyVim/LazyVim",
|
||||||
import = "lazyvim.plugins",
|
import = "lazyvim.plugins",
|
||||||
opts = { colorscheme = "catppuccin" },
|
opts = {
|
||||||
|
colorscheme = "catppuccin",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
import = "plugins",
|
||||||
},
|
},
|
||||||
{ import = "plugins" },
|
|
||||||
{ import = "lazyvim.plugins.extras.lazyrc" },
|
|
||||||
},
|
},
|
||||||
ui = {
|
ui = {
|
||||||
backdrop = 100,
|
backdrop = 100,
|
||||||
|
@ -25,6 +28,7 @@ require("lazy").setup({
|
||||||
version = false, -- always use the latest git commit
|
version = false, -- always use the latest git commit
|
||||||
-- version = "*", -- try installing the latest stable version for plugins that support semver
|
-- version = "*", -- try installing the latest stable version for plugins that support semver
|
||||||
},
|
},
|
||||||
|
local_spec = true,
|
||||||
checker = { enabled = true }, -- automatically check for plugin updates
|
checker = { enabled = true }, -- automatically check for plugin updates
|
||||||
performance = {
|
performance = {
|
||||||
cache = {
|
cache = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue