diff options
| author | Ibrahim Muftee <ibrahim@muftee.net> | 2024-04-11 23:20:57 -0500 |
|---|---|---|
| committer | Ibrahim Muftee <ibrahim@muftee.net> | 2026-07-01 00:23:31 -0400 |
| commit | a99b211b3bec43ebe3cdfa1899cba227d1d569a4 (patch) | |
| tree | a648712a5fa523f04670c32dd8eff6c2138b6669 /dot_config/nvim/lua/ibrahim/icons.lua | |
Initial commit
Diffstat (limited to 'dot_config/nvim/lua/ibrahim/icons.lua')
| -rw-r--r-- | dot_config/nvim/lua/ibrahim/icons.lua | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/dot_config/nvim/lua/ibrahim/icons.lua b/dot_config/nvim/lua/ibrahim/icons.lua new file mode 100644 index 0000000..d6573ab --- /dev/null +++ b/dot_config/nvim/lua/ibrahim/icons.lua @@ -0,0 +1,62 @@ +return { + diagnostics = { + -- Error = " ", + -- Warn = " ", + -- Hint = " ", + -- Info = " ", + Error = " ", + Warn = " ", + -- Hint = " ", + Hint = " ", + Info = " ", + }, + git = { + -- Change type + added = " ", + -- added = "✚" + modified = " ", + -- modified = "" + removed = " ", + deleted = "", + renamed = "", + -- Status type + untracked = "", + ignored = "", + unstaged = "", + staged = "", + conflict = "", + }, + gitsigns = { + -- Signs that will appear in the statusline column + added = "✚", + modified = "", + deleted = "", + }, + lsp = { + Text = "", + Method = "", + Function = "", + Constructor = "", + Field = "", + Variable = "", + Class = "", + Interface = "", + Module = "", + Property = "", + Unit = "", + Value = "", + Enum = "", + Keyword = "", + Snippet = "", + Color = "", + File = "", + Reference = "", + Folder = "", + EnumMember = "", + Constant = "", + Struct = "", + Event = "", + Operator = "", + TypeParameter = "", + }, +} |
