feat(config): add new branch

This commit is contained in:
2025-01-11 18:20:26 +04:00
commit bda5df7e13
28 changed files with 1179 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
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