mirror of https://github.com/LazyVim/starter
16 lines
288 B
Lua
16 lines
288 B
Lua
|
return {
|
||
|
-- https://github.com/folke/noice.nvim
|
||
|
{
|
||
|
"folke/noice.nvim",
|
||
|
opts = {
|
||
|
lsp = {
|
||
|
hover = {
|
||
|
-- Set not show a message if hover is not available
|
||
|
-- ex: shift+k on Typescript code
|
||
|
silent = true,
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|