diff options
author | Michaël Ball <michael.ball@krotosaudio.com> | 2024-10-16 15:16:19 +0100 |
---|---|---|
committer | Michaël Ball <michael.ball@krotosaudio.com> | 2024-10-16 15:16:19 +0100 |
commit | fe35291b6d9622c7a6006bbada43ccc559e06ad6 (patch) | |
tree | d1656b7c995623dfa00c142b196f118bcd1a22d5 /neovim/.config/nvim/lua/plugins/noice.lua | |
parent | c4703607d7608790c13aa95027315e211193cd16 (diff) |
All sorts of neovim updates
Diffstat (limited to 'neovim/.config/nvim/lua/plugins/noice.lua')
-rw-r--r-- | neovim/.config/nvim/lua/plugins/noice.lua | 34 |
1 files changed, 25 insertions, 9 deletions
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, + }, }, }, }, |