change folder icons, folder colors
This commit is contained in:
@@ -73,13 +73,13 @@ let g:lua_tree_icons = {
|
|||||||
\ 'git': {
|
\ 'git': {
|
||||||
\ 'unstaged': "✗",
|
\ 'unstaged': "✗",
|
||||||
\ 'staged': "✓",
|
\ 'staged': "✓",
|
||||||
\ 'unmerged': "═",
|
\ 'unmerged': "",
|
||||||
\ 'renamed': "➜",
|
\ 'renamed': "➜",
|
||||||
\ 'untracked': "★"
|
\ 'untracked': "★"
|
||||||
\ },
|
\ },
|
||||||
\ 'folder': {
|
\ 'folder': {
|
||||||
\ 'default': "",
|
\ 'default': "",
|
||||||
\ 'open': ""
|
\ 'open': ""
|
||||||
\ }
|
\ }
|
||||||
\ }
|
\ }
|
||||||
|
|
||||||
|
|||||||
@@ -95,9 +95,13 @@ when no icon is found for a file.
|
|||||||
\ 'git': {
|
\ 'git': {
|
||||||
\ 'unstaged': "✗",
|
\ 'unstaged': "✗",
|
||||||
\ 'staged': "✓",
|
\ 'staged': "✓",
|
||||||
\ 'unmerged': "═",
|
\ 'unmerged': "",
|
||||||
\ 'renamed': "➜",
|
\ 'renamed': "➜",
|
||||||
\ 'untracked': "★"
|
\ 'untracked': "★"
|
||||||
|
\ },
|
||||||
|
\ 'folder': {
|
||||||
|
\ 'default': "",
|
||||||
|
\ 'open': ""
|
||||||
\ }
|
\ }
|
||||||
\ }
|
\ }
|
||||||
|
|
||||||
@@ -237,7 +241,6 @@ LuaTreeImageFile
|
|||||||
LuaTreeMarkdownFile
|
LuaTreeMarkdownFile
|
||||||
LuaTreeIndentMarker
|
LuaTreeIndentMarker
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
LuaTreeLicenseIcon
|
LuaTreeLicenseIcon
|
||||||
LuaTreeYamlIcon
|
LuaTreeYamlIcon
|
||||||
LuaTreeTomlIcon
|
LuaTreeTomlIcon
|
||||||
|
|||||||
@@ -29,9 +29,9 @@ local function get_hl_groups()
|
|||||||
local colors = get_colors()
|
local colors = get_colors()
|
||||||
|
|
||||||
return {
|
return {
|
||||||
IndentMarker = { fg = '#90a4ae' },
|
IndentMarker = { fg = '#8094b4' },
|
||||||
Symlink = { gui = 'bold', fg = colors.cyan },
|
Symlink = { gui = 'bold', fg = colors.cyan },
|
||||||
FolderIcon = { fg = '#90a4ae' },
|
FolderIcon = { fg = '#8094b4' },
|
||||||
|
|
||||||
ExecFile = { gui = 'bold', fg = colors.green },
|
ExecFile = { gui = 'bold', fg = colors.green },
|
||||||
SpecialFile = { gui = 'bold,underline', fg = colors.yellow },
|
SpecialFile = { gui = 'bold,underline', fg = colors.yellow },
|
||||||
|
|||||||
@@ -7,13 +7,13 @@ function M.get_icon_state()
|
|||||||
git_icons = {
|
git_icons = {
|
||||||
unstaged = "✗",
|
unstaged = "✗",
|
||||||
staged = "✓",
|
staged = "✓",
|
||||||
unmerged = "═",
|
unmerged = "",
|
||||||
renamed = "➜",
|
renamed = "➜",
|
||||||
untracked = "★"
|
untracked = "★"
|
||||||
},
|
},
|
||||||
folder_icons = {
|
folder_icons = {
|
||||||
default = "",
|
default = "",
|
||||||
open = ""
|
open = ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user