fix: use notify-send instead of dunstify

This commit is contained in:
Fabio Lenherr / DashieTM 2023-09-28 16:39:43 +02:00
parent 62d59f480f
commit b48d19a15c
4 changed files with 19 additions and 4 deletions

View file

@ -108,6 +108,7 @@ return {
exportPdf = "onSave",
},
},
texlab = {},
ltex = {
settings = {
ltex = {
@ -128,7 +129,6 @@ return {
"typ",
},
},
texlab = {},
gopls = {
staticcheck = true,
},
@ -273,6 +273,16 @@ return {
end)
end
require("lspconfig").ltex.setup({
capabilities = capabilities,
on_attach = Util.on_attach(function(client, buffer)
require("config.lsp-keymap").on_attach(client, buffer)
require("ltex_extra").setup({
path = vim.fn.expand("~") .. "/.local/share/ltex",
})
end),
})
vim.cmd([[highlight LspInlayHint guibg=#1A1B26]])
end,
},