dotfiles/home/apps/neovim/lua/plugins/indent-blankline.lua

24 lines
479 B
Lua
Raw Normal View History

---@type LazyPluginSpec[]
return {
{
"lukas-reineke/indent-blankline.nvim",
config = function()
require("indent_blankline").setup({
space_char_blankline = " ",
})
vim.g.indent_blankline_filetype_exclude = {
2023-06-17 22:09:36 +02:00
"alpha",
"fugitive",
"help",
"lazy",
2023-06-17 22:09:36 +02:00
"NeogitCommitView",
"NeogitConsole",
"NeogitStatus",
"NvimTree",
2023-06-17 22:09:36 +02:00
"TelescopePrompt",
"Trouble",
}
end,
},
}