Add noice; fix highlight groups of theme

This commit is contained in:
2024-04-04 15:41:16 +02:00
parent b86f268e9a
commit 6a2054b203
2 changed files with 68 additions and 12 deletions

View File

@@ -0,0 +1,38 @@
-- lazy.nvim
return {
"folke/noice.nvim",
event = "VeryLazy",
opts = {
lsp = {
signature = {
enabled = false
},
hover = {
enabled = false
}
},
views = {
cmdline_popup = {
backend = "popup",
relative = "editor",
position = {
row = -1,
col = "0%"
},
border = {
style = "none"
}
},
cmdline_popupmenu = {
relative = "editor",
position = {
row = -2,
col = "0%"
}
}
}
},
dependencies = {
"MunifTanjim/nui.nvim"
}
}