aboutsummaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2023-09-04 22:46:54 +0200
committersrdusr <trevorgray@srdusr.com>2023-09-04 22:46:54 +0200
commit2835bdf6005626b3f377fd36aa8e10d0051aa0ef (patch)
tree44839c48014bfff6a5cb0c3e9812669d18e3daef /lua
parent0a5d62dac7bd9de16b8cf727d003cd8653a4719a (diff)
downloaddotfiles-2835bdf6005626b3f377fd36aa8e10d0051aa0ef.tar.gz
dotfiles-2835bdf6005626b3f377fd36aa8e10d0051aa0ef.zip
Allow webdev icons for folders
Diffstat (limited to 'lua')
-rw-r--r--lua/plugins/nvim-tree.lua10
1 files changed, 9 insertions, 1 deletions
diff --git a/lua/plugins/nvim-tree.lua b/lua/plugins/nvim-tree.lua
index 774e2f0..95b6f93 100644
--- a/lua/plugins/nvim-tree.lua
+++ b/lua/plugins/nvim-tree.lua
@@ -6,7 +6,8 @@
--- To see default mappings `:nvim-tree-default-mappings`
local icons = {
- git_placement = 'after',
+ webdev_colors = true,
+ git_placement = 'signcolumn',
modified_placement = 'after',
padding = ' ',
show = {
@@ -30,6 +31,7 @@ local icons = {
symlink = '',
symlink_open = '',
},
+
git = {
deleted = '',
unmerged = '',
@@ -40,6 +42,12 @@ local icons = {
ignored = '◌',
},
},
+ web_devicons = {
+ folder = {
+ enable = true,
+ color = true,
+ },
+ },
}
local renderer = {