Switch to tree-sitter-manager.nvim for managing tree-sitter parsers and queries. Also fixes upgrade issues.
9 lines
146 B
Lua
9 lines
146 B
Lua
-- Customise diagnostic UI
|
|
vim.diagnostic.config({
|
|
float = {
|
|
border = 'rounded',
|
|
title = 'Diagnostics',
|
|
},
|
|
virtual_text = false,
|
|
})
|