update configs

This commit is contained in:
Gustavo Silva (es00679121_prosegur) 2023-11-15 22:21:30 +01:00
parent cb9096c05a
commit 625a356917
17 changed files with 485 additions and 171 deletions

15
after/plugin/lsp.lua Normal file
View file

@ -0,0 +1,15 @@
-- require 'lspconfig'.grammarly.setup {
-- filetypes = { "markdown", "tex", "go" },
-- }
local sign = function(opts)
vim.fn.sign_define(opts.name, {
texthl = opts.name,
text = opts.text,
numhl = ''
})
end
sign({ name = 'DiagnosticSignError', text = '' })
sign({ name = 'DiagnosticSignWarn', text = '' })
sign({ name = 'DiagnosticSignHint', text = '' })
sign({ name = 'DiagnosticSignInfo', text = '»' })