Initial neovim configuration

This commit is contained in:
Bryan Ramos 2026-03-09 00:25:21 -04:00
commit 2da1c91264
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
14 changed files with 783 additions and 0 deletions

View file

@ -0,0 +1,15 @@
return {
{
"lukas-reineke/indent-blankline.nvim",
config = function()
require("ibl").setup({
--indent = { char = "│" },
--indent = { char = "⎸" },
indent = { char = "" },
scope = {
enabled = false
},
})
end,
}
}