tweak noice a little

This commit is contained in:
Christoph J. Scherr 2024-01-31 11:55:22 +01:00
parent b23f893849
commit 45da5bef31
Signed by: cscherrNT
GPG Key ID: 8E2B45BC51A27EA7
1 changed files with 10 additions and 1 deletions

View File

@ -312,7 +312,6 @@ local plugins = {
-- lazy.nvim -- lazy.nvim
{ {
"folke/noice.nvim", "folke/noice.nvim",
enabled = not vim.g.started_by_firenvim,
event = "VeryLazy", event = "VeryLazy",
-- config.lsp.signature.enabled = false -- config.lsp.signature.enabled = false
dependencies = { dependencies = {
@ -344,6 +343,16 @@ local plugins = {
inc_rename = false, -- enables an input dialog for inc-rename.nvim inc_rename = false, -- enables an input dialog for inc-rename.nvim
lsp_doc_border = false, -- add a border to hover docs and signature help lsp_doc_border = false, -- add a border to hover docs and signature help
}, },
messages = {
enabled = true,
view_error = "messages", -- so it does not spam boxes with errors
},
popupmenu = {
enabled = true,
},
notify = {
enabled = true,
},
} }
end, end,
}, },