disable underline on lsp diagnostics
This commit is contained in:
parent
0072af5c71
commit
7545e27aab
1 changed files with 8 additions and 0 deletions
|
@ -47,6 +47,14 @@ map("n", "<Tab>", ">>")
|
||||||
map("v", "<Tab>", ">gv")
|
map("v", "<Tab>", ">gv")
|
||||||
map("v", "<S-Tab>", "<gv")
|
map("v", "<S-Tab>", "<gv")
|
||||||
|
|
||||||
|
-- disable underline in lsp diagnostics
|
||||||
|
vim.lsp.handlers["textDocument/publishDiagnostics"] =
|
||||||
|
vim.lsp.with(
|
||||||
|
vim.lsp.diagnostic.on_publish_diagnostics,
|
||||||
|
{
|
||||||
|
underline = false
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
vim.opt.mouse = "c" -- set mouse in command line mode
|
vim.opt.mouse = "c" -- set mouse in command line mode
|
||||||
vim.opt.colorcolumn = "80" -- highlight this column
|
vim.opt.colorcolumn = "80" -- highlight this column
|
||||||
|
|
Loading…
Reference in a new issue