nvim/lua/cosmic/core/theme/icons.lua
Matt Leong cfc22daed3 feat(core): Check out renaming now :)
* Added nvim-notify to alert user of rename changes
* Use notify as vim.notify if installed
2021-10-27 17:19:29 -07:00

42 lines
829 B
Lua

local icons = {
rounded_left_filled = '',
rounded_right_filled = '',
arrow_left_filled = '', -- e0b2
arrow_right_filled = '', -- e0b0
arrow_left = '', -- e0b3
arrow_right = '', -- e0b1
ghost = '',
warn = '',
info = '',
error = '',
hint = '',
branch = '',
file = '',
dotdotdot = '',
information = '',
symlink = '',
line_number = '',
debug = '',
trace = '',
git = {
unstaged = '',
staged = '',
unmerged = '',
renamed = '',
untracked = '',
deleted = '',
ignored = '',
},
folder = {
arrow_open = '',
arrow_closed = '',
default = '',
open = '',
empty = '',
empty_open = '',
symlink = '',
symlink_open = '',
},
}
return icons