update configs
This commit is contained in:
parent
cb9096c05a
commit
625a356917
17 changed files with 485 additions and 171 deletions
15
after/plugin/lsp.lua
Normal file
15
after/plugin/lsp.lua
Normal 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 = '»' })
|
||||
Loading…
Add table
Add a link
Reference in a new issue