blob: 809732554894dbde8ac842122d435bfe02c3f02e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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 },
})
|