nvim/lua/plugins/ui.lua

31 lines
579 B
Lua
Raw Normal View History

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,
},
}
}