nvim/init.lua

17 lines
381 B
Lua
Raw Permalink Normal View History

2023-06-28 18:50:56 +02:00
require("sevi-kun")
2023-12-02 16:51:36 +01:00
local lazypath = vim.fn.stdpath("data") .. "\\lazy\\lazy.nvim"
2023-12-02 16:51:36 +01:00
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")