feat(nvim): Apperance and Cursor Movement

This commit is contained in:
js0ny 2025-01-26 14:00:07 +00:00
parent 1a5f992384
commit 0069470641
10 changed files with 87 additions and 7 deletions

View file

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