nvim/lua/plugins/ui.lua
2023-07-04 11:54:25 +02:00

31 lines
579 B
Lua

return {
{
'stevearc/dressing.nvim',
dependencies = {
'nvim-telescope/telescope-ui-select.nvim',
},
opts = {
select = {
backend = { 'telescope' }
}
}
},
{
'lukas-reineke/indent-blankline.nvim',
opts = {
char = "",
char_highlight_list = {
"Normal",
"CursorLine",
},
space_char_highlight_list = {
"Normal",
"CursorLine",
},
show_trailing_blankline_indent = false,
show_current_context = true,
show_current_context_start = true,
},
}
}