remove nerd fonts from neotree because font rendering

This commit is contained in:
gnat 2024-09-09 23:06:56 -07:00
parent d5ccc1935d
commit 5610df67fe
2 changed files with 30 additions and 2 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
spell
lazy-lock.json

View File

@ -17,8 +17,22 @@ return {
content = { content = {
{ "name", zindex = 10 }, { "name", zindex = 10 },
{ "clipboard", zindex = 10 }, { "clipboard", zindex = 10 },
{
"git_status",
zindex = 20,
align = "right",
hide_when_expanded = true,
symbols = {
added = 'A',
modified = 'M',
removed = 'R',
ignored = 'I',
untracked = 'U',
staged = 'S',
}
},
{ "diagnostics", errors_only = true, zindex = 20, align = "right", hide_when_expanded = true }, { "diagnostics", errors_only = true, zindex = 20, align = "right", hide_when_expanded = true },
{ "git_status", zindex = 20, align = "right", hide_when_expanded = true },
}, },
}, },
}, },
@ -31,8 +45,20 @@ return {
{ "clipboard", zindex = 10 }, { "clipboard", zindex = 10 },
{ "bufnr", zindex = 10 }, { "bufnr", zindex = 10 },
{ "modified", zindex = 20, align = "right" }, { "modified", zindex = 20, align = "right" },
{
"git_status",
zindex = 20,
align = "right",
symbols = {
added = 'A',
modified = 'M',
removed = 'R',
ignored = 'I',
untracked = 'U',
staged = 'S',
}
},
{ "diagnostics", zindex = 20, align = "right" }, { "diagnostics", zindex = 20, align = "right" },
{ "git_status", zindex = 20, align = "right" },
}, },
}, },
}, },