Skip to content

Commit

Permalink
Add some noice filters
Browse files Browse the repository at this point in the history
  • Loading branch information
jsstevenson committed Oct 6, 2024
1 parent d993ec5 commit 0208094
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
3 changes: 0 additions & 3 deletions nvim/lua/plugins/lsp/mason.lua
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ require("mason-lspconfig").setup({
function(server_name)
require("lspconfig")[server_name].setup({})
end,
-- ["lua_ls"] = function()
-- require("plugins.lsp.lua_ls")
-- end,
lua_ls = function()
require('lspconfig').lua_ls.setup({
on_init = function(client)
Expand Down
16 changes: 16 additions & 0 deletions nvim/lua/plugins/noice.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,22 @@ Plugin.config = function()
},
opts = { skip = true },
},
{
filter = {
event = "msg_show",
kind = "",
find = "lines yanked",
},
opts = { skip = true },
},
{
filter = {
event = "msg_show",
kind = "",
find = "lines written",
},
opts = { skip = true },
},
},
})
end
Expand Down

0 comments on commit 0208094

Please sign in to comment.