- 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
16 lines
385 B
Lua
Executable file
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
|
|
},
|
|
}
|