lsp_lines only current line, title change

This commit is contained in:
Tyler Hallada 2023-12-01 15:28:12 -05:00
parent 48e6eeeb7c
commit 210e52ee18
2 changed files with 3 additions and 3 deletions

View File

@ -9,4 +9,4 @@ vim.opt.completeopt = "menu,menuone,noinsert,noselect"
-- Window decorations -- Window decorations
vim.opt.title = true vim.opt.title = true
vim.opt.titlestring = "%{substitute(getcwd(),$HOME,'~','')} - Neovide" vim.opt.titlestring = "%{substitute(getcwd(),$HOME,'~','')} - Neovim"

View File

@ -47,8 +47,8 @@ return {
}, },
opts = { opts = {
diagnostics = { diagnostics = {
virtual_text = false, virtual_text = true,
virtual_lines = true, virtual_lines = { only_current_line = true },
}, },
}, },
} }