home: vim: configure 'lsp_lines'

This commit is contained in:
Bruno BELANYI 2023-05-02 21:29:49 +01:00
parent 6cdbd6bb29
commit b0f054b1e6
2 changed files with 5 additions and 0 deletions

View file

@ -11,6 +11,8 @@ M.on_attach = function(client, bufnr)
vim.diagnostic.config({
-- Disable virtual test next to affected regions
virtual_text = false,
-- Also disable virtual diagnostics under the affected regions
virtual_lines = false,
-- Show diagnostics signs
signs = true,
-- Underline offending regions

View file

@ -0,0 +1,3 @@
local lsp_lines = require("lsp_lines")
lsp_lines.setup()