
* Added nvim-notify to alert user of rename changes * Use notify as vim.notify if installed
42 lines
829 B
Lua
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
|