Initial commit

This commit is contained in:
2025-04-18 12:43:43 -07:00
commit afe167a752
14 changed files with 304 additions and 0 deletions

10
lua/plugins/indent.lua Normal file
View File

@ -0,0 +1,10 @@
return {
{
"nvimdev/indentmini.nvim",
config = function()
require("indentmini").setup()
vim.cmd.highlight("IndentLine guifg=#444444") -- Set indent line color
end
}
}