Changing profile name

This commit is contained in:
Tobias
2025-04-05 22:42:05 +02:00
parent 1af9122e56
commit 728a8073d6
11 changed files with 5 additions and 5 deletions

17
lua/default/lazy_init.lua Normal file
View File

@@ -0,0 +1,17 @@
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)
require("lazy").setup({
spec = "default.lazy",
change_detection = { notify = false }
})