Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
neovim-config/lua/user/lsp/virtuallines.lua

11 lines
174 B
Lua
Raw Normal View History

2022-07-12 17:07:02 +00:00
local status_ok, lines = pcall(require, "lsp_lines")
if not status_ok then
return
end
lines.register_lsp_virtual_lines()
vim.diagnostic.config({
virtual_text = false,
})