2024-03-26 11:51:53 +00:00
|
|
|
require("barink.vim")
|
|
|
|
require("barink.keys")
|
2024-03-24 15:31:02 +00:00
|
|
|
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
|
|
|
if not vim.loop.fs_stat(lazypath) then
|
2024-05-28 19:11:34 +00:00
|
|
|
vim.fn.system({
|
|
|
|
"git",
|
|
|
|
"clone",
|
|
|
|
"--filter=blob:none",
|
|
|
|
"https://github.com/folke/lazy.nvim.git",
|
|
|
|
"--branch=stable", -- latest stable release
|
|
|
|
lazypath,
|
|
|
|
})
|
2024-03-24 15:31:02 +00:00
|
|
|
end
|
|
|
|
vim.opt.rtp:prepend(lazypath)
|
2024-05-28 19:11:34 +00:00
|
|
|
local opts = {
|
|
|
|
defaults = {
|
|
|
|
lazy = false,
|
|
|
|
},
|
|
|
|
change_detection = {
|
|
|
|
enabled = true,
|
|
|
|
notify = false,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
require("lazy").setup("barink.plugins", opts)
|