AutoYADM commit: 2024-11-19 17:15:03
This commit is contained in:
parent
51f3f4e7b6
commit
f6621b1ade
4 changed files with 23 additions and 2 deletions
|
@ -6,7 +6,7 @@ local extraOpts = {
|
||||||
"en-CA",
|
"en-CA",
|
||||||
},
|
},
|
||||||
path = vim.fn.expand("~") .. "/.local/share/ltex",
|
path = vim.fn.expand("~") .. "/.local/share/ltex",
|
||||||
log_level = "warn",
|
log_level = "none",
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
|
|
20
.config/nvim/lua/plugins/noice.lua
Normal file
20
.config/nvim/lua/plugins/noice.lua
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
return {
|
||||||
|
"folke/noice.nvim",
|
||||||
|
opts = {
|
||||||
|
-- recipe to ignore progress messages from
|
||||||
|
-- the ltex lsp
|
||||||
|
routes = {
|
||||||
|
{
|
||||||
|
filter = {
|
||||||
|
event = "lsp",
|
||||||
|
kind = "progress",
|
||||||
|
cond = function(message)
|
||||||
|
local client = vim.tbl_get(message.opts, "progress", "client")
|
||||||
|
return client == "ltex"
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
opts = { skip = true },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
return {
|
return {
|
||||||
"williamboman/mason.nvim",
|
"williamboman/mason.nvim",
|
||||||
opts = { ensure_installed = { "typos-lsp" } },
|
-- opts = { ensure_installed = { "typos-lsp" } },
|
||||||
}
|
}
|
||||||
|
|
|
@ -105,3 +105,4 @@ isSeen
|
||||||
isState
|
isState
|
||||||
bytesRead
|
bytesRead
|
||||||
SoundID
|
SoundID
|
||||||
|
Alaca
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue