disable diagnostic inline text by default to reduce distraction
This commit is contained in:
@ -2,7 +2,7 @@ local M = {}
|
|||||||
|
|
||||||
M.setup = function()
|
M.setup = function()
|
||||||
local config = {
|
local config = {
|
||||||
virtual_text = true,
|
virtual_text = false,
|
||||||
signs = {
|
signs = {
|
||||||
text = {
|
text = {
|
||||||
[vim.diagnostic.severity.ERROR] = '',
|
[vim.diagnostic.severity.ERROR] = '',
|
||||||
@ -12,7 +12,7 @@ M.setup = function()
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
update_in_insert = true,
|
update_in_insert = true,
|
||||||
underline = true,
|
underline = false,
|
||||||
severity_sort = true,
|
severity_sort = true,
|
||||||
float = {
|
float = {
|
||||||
focusable = true,
|
focusable = true,
|
||||||
|
|||||||
@ -19,6 +19,18 @@ return {
|
|||||||
require("user.plugins.lsp.diagnostics_config").setup()
|
require("user.plugins.lsp.diagnostics_config").setup()
|
||||||
-- require("user.lsp.none_ls")
|
-- require("user.lsp.none_ls")
|
||||||
|
|
||||||
|
local which_key = require("which-key")
|
||||||
|
which_key.add({
|
||||||
|
{
|
||||||
|
"<leader>ch",
|
||||||
|
function()
|
||||||
|
local current = vim.diagnostic.config().virtual_text
|
||||||
|
vim.diagnostic.config({ virtual_text = not current })
|
||||||
|
end,
|
||||||
|
desc = "toggle inline diagnostics"
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
vim.cmd([[ command! Format execute 'lua vim.lsp.buf.format{async=true}' ]])
|
vim.cmd([[ command! Format execute 'lua vim.lsp.buf.format{async=true}' ]])
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
|||||||
@ -99,7 +99,7 @@ return {
|
|||||||
})
|
})
|
||||||
|
|
||||||
which_key.add({
|
which_key.add({
|
||||||
{ "<leader>l", "<cmd>lua vim.diagnostic.setloclist()<CR>", desc = "Show diagnostic list" },
|
{ "<leader>cd", "<cmd>lua vim.diagnostic.setloclist()<CR>", desc = "Show diagnostic list" },
|
||||||
})
|
})
|
||||||
|
|
||||||
which_key.add({
|
which_key.add({
|
||||||
|
|||||||
Reference in New Issue
Block a user