Gustavo Silva (es00679121_prosegur) 625a356917 update configs
2024-02-12 19:05:57 +01:00

16 lines
433 B
Lua

-- 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 = '»' })