-- this file is an amalgamation of configurations that don't have its own -- config file and will be lazily loaded require("gitblame").setup() require("treesitter-context").setup() vim.diagnostic.config({ signs = { text = { [vim.diagnostic.severity.ERROR] = "", [vim.diagnostic.severity.WARN] = "", [vim.diagnostic.severity.INFO] = "", [vim.diagnostic.severity.HINT] = "", }, }, virtual_text = false, virtual_lines = { format = function(d) return d.message end, current_line = true, }, severity_sort = true, })