We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0883a9b commit 9296755Copy full SHA for 9296755
1 file changed
lua/tiny/basics.lua
@@ -16,7 +16,8 @@ local config = {
16
laststatus = 3,
17
wrap = false,
18
undofile = true,
19
- whichwrap = vim.o.whichwrap .. "<>[]hl"
+ whichwrap = vim.o.whichwrap .. "<>[]hl",
20
+ diagnostics_text = true,
21
}
22
-- add sum stuff here
23
@@ -40,4 +41,7 @@ function M.setup(opts)
40
41
end
42
43
44
+vim.diagnostic.config({ virtual_text = config.options.diagnostics_text })
45
+
46
47
return M
0 commit comments