Updating plugins to use lazy nvim
Signed-off-by: Taken <taken@mairimashita.org>
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user