update UI in nvim

This commit is contained in:
Alexander Navarro 2023-10-25 18:25:21 -03:00
parent f53082a62d
commit 125503a2c0
8 changed files with 90 additions and 34 deletions

View file

@ -11,10 +11,16 @@ return {
"rcarriga/nvim-notify",
opts = {
background_colour = "#000000",
}
},
},
},
opts = {
presets = {
bottom_search = true,
-- command_palette = true,
long_message_to_split = true,
inc_rename = true,
},
lsp = {
override = {
["vim.lsp.util.convert_input_to_markdown_lines"] = true,
@ -34,12 +40,43 @@ return {
},
view = "mini",
},
{
filter = {
event = "msg_show",
kind = "search_count",
},
opts = { skip = true },
},
},
presets = {
bottom_search = true,
command_palette = true,
long_message_to_split = true,
inc_rename = true,
views = {
cmdline_popup = {
position = {
row = 5,
col = "50%",
},
size = {
width = 60,
height = "auto",
},
},
popupmenu = {
relative = "editor",
position = {
row = 8,
col = "50%",
},
size = {
width = 60,
height = 10,
},
border = {
style = "rounded",
padding = { 0, 1 },
},
win_options = {
winhighlight = { Normal = "Normal", FloatBorder = "DiagnosticInfo" },
},
},
},
},
-- stylua: ignore