nvim/lua/cosmic/core/theme/icons.lua
2021-11-29 15:15:31 -08:00

54 lines
1 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 = '',
git = {
unstaged = '',
staged = '',
unmerged = '',
renamed = '',
untracked = '',
deleted = '',
ignored = '',
},
folder = {
arrow_open = '',
arrow_closed = '',
default = '',
open = '',
empty = '',
empty_open = '',
symlink = '',
symlink_open = '',
},
}
return icons