dotfiles/home/.config/nvim/lua/plugins/indent-blankline.lua

24 lines
431 B
Lua
Raw Normal View History

-- Indent characters
return {
"lukas-reineke/indent-blankline.nvim",
config = function()
require("ibl").setup({
exclude = {
filetypes = {
"",
"checkhealth",
"dashboard",
"git",
"gitcommit",
"TelescopePrompt",
"TelescopeResults",
"help",
"lazy",
"lspinfo",
"man",
},
2023-09-29 09:03:03 +03:00
},
})
end,
}