Files
nvim/plugin/ui.lua
Kenneth Benzie (Benie) 9aac668a49 Upgrade to v0.12.x, remove nvim-treesitter
Switch to tree-sitter-manager.nvim for managing tree-sitter parsers and
queries. Also fixes upgrade issues.
2026-06-08 15:24:26 +01:00

9 lines
146 B
Lua

-- Customise diagnostic UI
vim.diagnostic.config({
float = {
border = 'rounded',
title = 'Diagnostics',
},
virtual_text = false,
})