diff --git a/README.md b/README.md index 1d567e6..532352c 100644 --- a/README.md +++ b/README.md @@ -178,13 +178,13 @@ Check the [wiki](https://github.com/folke/noice.nvim/wiki/Configuration-Recipes) ["cmp.entry.get_documentation"] = false, }, hover = { - enabled = false, + enabled = true, view = nil, -- when nil, use defaults from documentation ---@type NoiceViewOptions opts = {}, -- merged with defaults from documentation }, signature = { - enabled = false, + enabled = true, auto_open = { enabled = true, trigger = true, -- Automatically show signature help when typing a trigger character from the LSP @@ -197,7 +197,7 @@ Check the [wiki](https://github.com/folke/noice.nvim/wiki/Configuration-Recipes) }, message = { -- Messages shown by lsp servers - enabled = false, + enabled = true, view = "notify", opts = {}, }, diff --git a/lua/noice/config/init.lua b/lua/noice/config/init.lua index 7ff14e7..3bb0db7 100644 --- a/lua/noice/config/init.lua +++ b/lua/noice/config/init.lua @@ -119,13 +119,13 @@ function M.defaults() ["cmp.entry.get_documentation"] = false, }, hover = { - enabled = false, + enabled = true, view = nil, -- when nil, use defaults from documentation ---@type NoiceViewOptions opts = {}, -- merged with defaults from documentation }, signature = { - enabled = false, + enabled = true, auto_open = { enabled = true, trigger = true, -- Automatically show signature help when typing a trigger character from the LSP @@ -138,7 +138,7 @@ function M.defaults() }, message = { -- Messages shown by lsp servers - enabled = false, + enabled = true, view = "notify", opts = {}, },