feat(noice): add config to noice and notify

This commit is contained in:
2024-10-22 01:33:17 +04:00
parent 26f9ad46d3
commit a6c2687a8f
2 changed files with 72 additions and 0 deletions

View File

@@ -1,4 +1,36 @@
local focused = true
vim.api.nvim_create_autocmd("FocusGained", {
callback = function()
focused = true
end,
})
vim.api.nvim_create_autocmd("FocusLost", {
callback = function()
focused = false
end,
})
require("noice").setup({
table.insert(opts.routes, {
filter = {
event = "notify",
find = "No information available",
},
opts = { skip = true },
}),
table.insert(opts.routes, 1, {
filter = {
cond = function()
return not focused
end,
},
view = "notify_send",
opts = { stop = false },
}),
lsp = {
-- override markdown rendering so that **cmp** and other plugins use **Treesitter**
override = {