change default `lsp_diag_virtual_text` prefix to nvim default (#353)

pull/357/head
qasimwarraich 11 months ago committed by GitHub
parent a8095eb334
commit 97b76f3188
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -775,7 +775,7 @@ require('go').setup({
lsp_diag_hdlr = true, -- hook lsp diag handler
lsp_diag_underline = true,
-- virtual text setup
lsp_diag_virtual_text = { space = 0, prefix = "" },
lsp_diag_virtual_text = { space = 0, prefix = '■' },
lsp_diag_signs = true,
lsp_diag_update_in_insert = false,
lsp_document_formatting = true,

@ -390,6 +390,7 @@ You can setup go.nvim with following options:
lsp_keymaps = true, -- true: apply default lsp keymaps
lsp_codelens = true,
lsp_diag_hdlr = true, -- hook lsp diag handler
lsp_diag_virtual_text = { space = 0, prefix = '■' }, -- lsp virtual text format
lsp_inlay_hints = {
enable = true,

@ -45,7 +45,7 @@ _GO_NVIM_CFG = {
lsp_diag_hdlr = true, -- hook lsp diag handler
lsp_diag_underline = true,
-- virtual text setup
lsp_diag_virtual_text = { space = 0, prefix = '' },
lsp_diag_virtual_text = { space = 0, prefix = '' },
lsp_diag_signs = true,
lsp_inlay_hints = {
enable = true,

Loading…
Cancel
Save