26 lines
502 B
Lua
26 lines
502 B
Lua
return {
|
|
"folke/noice.nvim",
|
|
event = "VeryLazy",
|
|
opts = {
|
|
lsp = {
|
|
progress = {
|
|
enabled = false
|
|
},
|
|
signature = {
|
|
enabled = false
|
|
},
|
|
hover = {
|
|
enabled = false
|
|
},
|
|
},
|
|
presets = {
|
|
bottom_search = true, -- use a classic bottom cmdline for search
|
|
long_message_to_split = true, -- long messages will be sent to a split
|
|
},
|
|
},
|
|
dependencies = {
|
|
"MunifTanjim/nui.nvim",
|
|
"rcarriga/nvim-notify",
|
|
}
|
|
}
|