migrate from packer to lazy

This commit is contained in:
2023-12-02 16:51:36 +01:00
parent 221eadd375
commit 05fa907bbf
6 changed files with 166 additions and 158 deletions

View File

@@ -1 +1,16 @@
require("sevi-kun")
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
require("lazy").setup("sevi-kun.plugins")