mirror of
https://github.com/gabehf/nvim-conf.git
synced 2026-03-12 00:40:33 -07:00
19 lines
375 B
Lua
19 lines
375 B
Lua
return {
|
|
"nvim-tree/nvim-tree.lua",
|
|
opts = {
|
|
renderer = {
|
|
icons = {
|
|
glyphs = {
|
|
git = { -- this is so stupid lmao
|
|
unstaged = "😴",
|
|
staged = "😎",
|
|
unmerged = "😈",
|
|
untracked = "😭",
|
|
renamed = "😶",
|
|
deleted = "😵",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|