local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" if not vim.loop.fs_stat(lazypath) then local lazyrepo = "https://github.com/folke/lazy.nvim.git" vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath }) end ---@diagnostic disable-next-line: undefined-field vim.opt.rtp:prepend(lazypath) require("lazy").setup({ spec = { { import = "thesiahxyz.plugins" }, }, install = { colorscheme = { "catppuccin" }, }, change_detection = { notify = false }, checker = { enabled = false }, })