nvim/lua/cosmic/theme/icons.lua
2021-12-19 20:38:14 -08:00

84 lines
1.6 KiB
Lua

local icons = {
rounded_left_filled = '',
rounded_right_filled = '',
arrow_left_filled = '', -- e0b2
arrow_right_filled = '', -- e0b0
arrow_left = '', -- e0b3
arrow_right = '', -- e0b1
ghost = '',
cosmic = '💫',
star = '',
scorpio = '♏︎',
rocket = '🚀',
warn = '',
info = '',
error = '',
hint = '',
perf = '',
note = '',
branch = '',
file = '',
dotdotdot = '',
information = '',
symlink = '',
line_number = '',
debug = '',
flame = '',
check = '',
trace = '',
file1 = '',
file2 = '',
clock = '',
word = '',
diff_add = '',
diff_modified = '',
diff_remove = '',
git = {
unstaged = '',
staged = '',
unmerged = '',
renamed = '',
untracked = '',
deleted = '',
ignored = '',
},
folder = {
arrow_open = '',
arrow_closed = '',
default = '',
open = '',
empty = '',
empty_open = '',
symlink = '',
symlink_open = '',
},
kind_icons = {
Text = '',
Method = 'm',
Function = '',
Constructor = '',
Field = '',
Variable = '',
Class = '',
Interface = '',
Module = '',
Property = '',
Unit = '',
Value = '',
Enum = '',
Keyword = '',
Snippet = '',
Color = '',
File = '',
Reference = '',
Folder = '',
EnumMember = '',
Constant = '',
Struct = '',
Event = '',
Operator = '',
TypeParameter = '',
},
}
return icons