nvim/lua/custom/plugins/indent.lua
Jeremie Fraeys f162354317
refactor: cleanup UI and navigation plugins
- Simplify telescope.lua configuration
- Streamline trouble.lua diagnostics
- Refactor oil.lua file manager
- Update harpoon.lua quick file navigation
- Clean up indent.lua, lualine.lua, which-key.lua
2026-03-23 20:34:20 -04:00

16 lines
385 B
Lua
Executable file

return {
'lukas-reineke/indent-blankline.nvim',
main = 'ibl',
event = 'BufReadPost',
opts = {
indent = {
highlight = { 'Whitespace', 'Function' },
char = '',
},
whitespace = {
highlight = { 'Whitespace', 'Function' },
remove_blankline_trail = true,
},
scope = { enabled = false }, -- excluded for all your languages anyway
},
}