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

24 lines
392 B
Lua
Raw Normal View History

-- Indent characters
return {
"lukas-reineke/indent-blankline.nvim",
---@type ibl.config
2023-11-18 02:54:35 +02:00
opts = {
exclude = {
filetypes = {
"",
"checkhealth",
"dashboard",
"git",
"gitcommit",
"TelescopePrompt",
"TelescopeResults",
"help",
"lazy",
"lspinfo",
"man",
2023-09-29 09:03:03 +03:00
},
2023-11-18 02:54:35 +02:00
},
},
main = "ibl",
}