This commit is contained in:
asep.komarudin 2024-04-21 09:12:19 +07:00
parent 1b1f8b9967
commit 1cacea97f6
7 changed files with 153 additions and 108 deletions

View file

@ -82,13 +82,13 @@ return {
Calendar = "",
Check = "",
ChevronRight = "",
ChevronShortDown = "",
ChevronShortDown = "",
ChevronShortLeft = "",
ChevronShortRight = "",
ChevronShortUp = "",
ChevronShortDown2 = "",
ChevronShortLeft2 = "",
ChevronShortRight2 = " ",
ChevronShortRight2 = "",
ChevronShortUp2 = "",
Circle = "",
Close = "󰅖",

View file

@ -55,7 +55,7 @@ nvim_tree.setup({
root_folder_label = false,
indent_width = 2,
indent_markers = {
enable = false,
enable = true,
inline_arrows = true,
icons = {
corner = "",
@ -80,8 +80,10 @@ nvim_tree.setup({
symlink = icons.ui.FileSymlink,
bookmark = icons.ui.BookMark,
folder = {
arrow_closed = icons.ui.TriangleShortArrowRight,
arrow_open = icons.ui.TriangleShortArrowDown,
-- arrow_closed = icons.ui.TriangleShortArrowRight,
arrow_closed = icons.ui.ChevronShortRight,
-- arrow_open = icons.ui.TriangleShortArrowDown,
arrow_open = icons.ui.ChevronShortDown,
default = icons.ui.Folder,
open = icons.ui.FolderOpen,
empty = icons.ui.EmptyFolder,

View file

@ -155,6 +155,12 @@ material_icon.setup({
cterm_color = "220",
name = "jpg",
},
["jpeg"] = {
icon = "󰥶",
color = "#88C057",
cterm_color = "220",
name = "jpeg",
},
["csv"] = {
icon = "󰈚",
color = "#57965c",
@ -493,5 +499,11 @@ web_devicons.setup({
cterm_color = "220",
name = "gitlabciyaml",
},
[".env_example"] = {
icon = "",
color = "#faf743",
cterm_color = "227",
name = "Envexample",
},
},
})