Updating plugins to use lazy nvim

Signed-off-by: Taken <taken@mairimashita.org>
This commit is contained in:
2023-08-27 10:43:28 +02:00
parent e8eba043e9
commit 88baa12ef2
2 changed files with 19 additions and 6 deletions

View File

@@ -11,7 +11,9 @@ if not vim.loop.fs_stat(lazypath) then
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup({
local lazy = require("lazy")
local plugins = {
{
"catppuccin/nvim",
name = "catppuccin",
@@ -187,4 +189,15 @@ require("lazy").setup({
require("taken.plugins.lazy.keyseer")
end,
},
})
}
local opts = {
dev = {
path = "~/git/nvim",
},
checker = {
enabled = true,
}
}
lazy.setup(plugins, opts)