1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-10-13 04:51:15 +02:00

nvim: adapted icons to fit with another

This commit is contained in:
2023-08-08 18:10:08 +02:00
parent ec1e911712
commit 2a2dc266b0
2 changed files with 454 additions and 410 deletions

View File

@@ -1,4 +1,4 @@
-- set diagnostic signs
-- set signs for various uses
Error_sign = ""
Warn_sign = ""
Info_sign = ""
@@ -15,7 +15,7 @@ Menu_signs = {
luasnip = "",
}
Symbol_map = {
Lsp_signs = {
Text = "",
Method = "",
Function = "φ",
@@ -43,12 +43,46 @@ Symbol_map = {
TypeParameter = ""
}
Install_icons = {
package_installed = "",
package_pending = "",
Install_signs = {
package_installed = "",
package_pending = "",
package_uninstalled = ""
}
Git_signs = {
unstaged = "",
staged = "",
unmerged = "",
renamed = "",
deleted = "",
untracked = "",
ignored = "",
}
Lazy_signs = {
cmd = "",
config = "",
event = "",
ft = "",
init = "",
import = "",
keys = "",
lazy = "󰒲 ",
loaded = "",
not_loaded = "",
plugin = "",
runtime = "",
source = "",
start = "",
task = "",
list = {
"",
"",
"",
"",
}
}
vim.fn.sign_define(
"DiagnosticSignError",
{ texthl = "DiagnosticSignError", text = Error_sign, numhl = "DiagnosticSignError" }