dotfiles-mirror/config/nvim/lua/plugins/lazy/init.lua
coast 78e2285e54 Big nvim changes, change theme to catppuccin mocha on waybar, sway, and
mako, and move etc/ files to /, removing etc
2025-11-01 21:01:51 +03:30

17 lines
392 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_plugins = require("plugins/lazy/plugins")
require("lazy").setup(lazy_plugins)
require("mason").setup()