From aa5717f00fd14430c80939a68d7107c26de6e554 Mon Sep 17 00:00:00 2001 From: Mohammad Reza Karimi Date: Tue, 20 Jan 2026 15:55:27 -0500 Subject: first commit --- plugin/99_rest.lua | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 plugin/99_rest.lua (limited to 'plugin/99_rest.lua') diff --git a/plugin/99_rest.lua b/plugin/99_rest.lua new file mode 100644 index 0000000..481c0ff --- /dev/null +++ b/plugin/99_rest.lua @@ -0,0 +1,22 @@ +vim.schedule( + function() + vim.diagnostic.config({ + float = { header = "" }, + virtual_text = { + current_line = true, + prefix = " ■", + virt_text_pos = "eol_right_align", + }, + signs = { + text = { "●", "●", "●", "●" }, + numhl = { + "DiagnosticError", + "DiagnosticWarn", + "DiagnosticInfo", + "DiagnosticHint", + }, + }, + severity_sort = true, + }) + end +) -- cgit v1.2.3-71-gdd5e