Initial Commit

This commit is contained in:
Falon Clark
2026-03-19 13:09:21 -04:00
commit a7f8df9e50
24 changed files with 537 additions and 0 deletions

11
lua/plugins/origami.lua Normal file
View File

@@ -0,0 +1,11 @@
return {
"chrisgrieser/nvim-origami",
event = "VeryLazy",
config = function ()
require("origami").setup({})
end,
init = function ()
vim.opt.foldlevel = 99
vim.opt.foldlevelstart = 99
end
}