From fe35291b6d9622c7a6006bbada43ccc559e06ad6 Mon Sep 17 00:00:00 2001 From: Michaƫl Ball Date: Wed, 16 Oct 2024 15:16:19 +0100 Subject: All sorts of neovim updates --- neovim/.config/nvim/lua/plugins/noice.lua | 34 +++++++++++++++++++++++-------- 1 file changed, 25 insertions(+), 9 deletions(-) (limited to 'neovim/.config/nvim/lua/plugins/noice.lua') diff --git a/neovim/.config/nvim/lua/plugins/noice.lua b/neovim/.config/nvim/lua/plugins/noice.lua index 11bee05..09b628e 100644 --- a/neovim/.config/nvim/lua/plugins/noice.lua +++ b/neovim/.config/nvim/lua/plugins/noice.lua @@ -22,6 +22,10 @@ return { inc_rename = false, -- enables an input dialog for inc-rename.nvim lsp_doc_border = false, -- add a border to hover docs and signature help }, + popupmenu = { + enabled = true, + backend = "nui", + }, views = { cmdline_popup = { position = { @@ -53,16 +57,28 @@ return { }, }, routes = { - filter = { - event = 'lsp', - kind = 'progress', - cond = function(message) - local client = vim.tbl_get(message.opts, 'progress', 'client') - return client == 'null-ls' - end, + { + filter = { + event = 'lsp', + kind = 'progress', + cond = function(message) + local client = vim.tbl_get(message.opts, 'progress', 'client') + return client == 'null-ls' + end, + }, + opts = { + skip = true, + }, }, - opts = { - skip = true, + { + filter = { + event = 'msg_show', + kind = '', + find = 'written', + }, + opts = { + skip = true, + }, }, }, }, -- cgit v1.2.3