Add renamed files

This commit is contained in:
2023-12-31 02:47:28 +01:00
parent 589e19a5f8
commit 9225877ff1
3 changed files with 55 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
local signs = { Error = "", Warn = "", Hint = "󰠠 ", Info = "" }
for type, icon in pairs(signs) do
local hl = "DiagnosticSign" .. type
vim.fn.sign_define(hl, { text = icon, texthl = hl, numhl = "" })
end