1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2024-09-20 14:12:37 +00:00
dotfiles/.config/nvim/lua/plugins/indentline.lua

23 lines
286 B
Lua
Raw Normal View History

require("ibl").setup({
indent = {
char = "",
tab_char = "",
},
scope = {
enabled = true,
show_start = false,
show_end = false,
},
exclude = {
filetypes = {
"help",
"mini.starter",
"neo-tree",
"Trouble",
"lazy",
"mason",
"notify",
},
2022-10-01 11:46:18 +00:00
},
})