2024-04-30 10:24:23 +00:00
|
|
|
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
|
|
|
if not (vim.uv or vim.loop).fs_stat(lazypath) then
|
|
|
|
vim.fn.system({
|
|
|
|
"git",
|
|
|
|
"clone",
|
|
|
|
"--filter=blob:none",
|
|
|
|
"https://github.com/folke/lazy.nvim.git",
|
|
|
|
"--branch=stable",
|
|
|
|
lazypath,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
vim.opt.rtp:prepend(lazypath)
|
|
|
|
require("vim_options")
|
2024-05-16 22:11:48 +00:00
|
|
|
require("keybinds")
|
2024-04-30 10:24:23 +00:00
|
|
|
require("lazy").setup("plugins")
|
|
|
|
|