remove inline error

This commit is contained in:
Adrian Bakke 2024-08-06 17:24:44 +02:00
parent 909b3864dc
commit 26495af914
1 changed files with 3 additions and 2 deletions

View File

@ -500,7 +500,7 @@ require('lazy').setup({
-- Execute a code action, usually your cursor needs to be on top of an error -- Execute a code action, usually your cursor needs to be on top of an error
-- or a suggestion from your LSP for this to activate. -- or a suggestion from your LSP for this to activate.
map('<C-Space>', vim.lsp.buf.code_action, '[C]ode [A]ction') map('<leader>ca', vim.lsp.buf.code_action, '[C]ode [A]ction')
-- Opens a popup that displays documentation about the word under your cursor -- Opens a popup that displays documentation about the word under your cursor
-- See `:help K` for why this keymap. -- See `:help K` for why this keymap.
@ -915,5 +915,6 @@ require('lazy').setup({
}, },
}) })
vim.diagnostic.config { virtual_text = false }
-- The line beneath this is called `modeline`. See `:help modeline` -- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et