Files
neovim-config/lua/taken/lazy.lua
2023-09-03 13:36:05 +02:00

31 lines
605 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", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
local lazy = require("lazy")
local plugins = {
{ import = "taken.plugins" },
{ import = "taken.plugins.lsp" }
}
local opts = {
dev = {
path = "~/git/nvim",
},
checker = {
enabled = true,
},
}
lazy.setup(plugins, opts)