Merge remote-tracking branch 'origin/nixos' into nixos
This commit is contained in:
commit
ce2bddc541
2 changed files with 36 additions and 2 deletions
|
|
@ -52,7 +52,17 @@ local on_attach_def = function(client, bufnr)
|
|||
},
|
||||
},
|
||||
t = {
|
||||
l = { lsp_lines.toggle, "LSP lines" },
|
||||
l = {
|
||||
function()
|
||||
lsp_lines.toggle()
|
||||
if vim.diagnostic.is_disabled() then
|
||||
vim.diagnostic.enable()
|
||||
else
|
||||
vim.diagnostic.disable()
|
||||
end
|
||||
end,
|
||||
"LSP lines",
|
||||
},
|
||||
i = {
|
||||
function()
|
||||
vim.lsp.inlay_hint(bufnr, nil)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue