Files
neovim-config/lua/taken/lazy.lua
2025-08-26 11:46:42 +02:00

38 lines
753 B
Lua

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",
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
local lazy = require("lazy")
local plugins = {
{ import = "taken.plugins" },
{ import = "taken.plugins.lsp" },
}
---@diagnostic disable-next-line: missing-fields
--- @type LazyConfig
local opts = {
checker = {
enabled = true,
notify = false,
},
change_detection = {
enabled = true,
notify = false,
},
ui = {
border = "rounded",
},
}
lazy.setup(plugins, opts)