[wip] rebuild from scratch

This commit is contained in:
Gabe Farrell 2024-04-14 02:27:26 -04:00
parent 5c607d047b
commit 91ba5541a3
35 changed files with 473 additions and 485 deletions

View file

@ -1,20 +1,23 @@
return {
"nvim-tree/nvim-tree.lua",
opts = {
git = { ignore = false },
renderer = {
icons = {
glyphs = {
git = { -- this is so stupid lmao
unstaged = "😴",
staged = "😎",
unmerged = "😈",
untracked = "😭",
renamed = "😶",
deleted = "😵",
},
},
},
},
},
"nvim-tree/nvim-tree.lua",
version = "*",
lazy = false,
dependencies = {
"nvim-tree/nvim-web-devicons",
lazy = true,
opts = function()
return { override = require "nvchad.icons.devicons" }
end,
-- opts = {},
config = function(_, opts)
dofile(vim.g.base46_cache .. "devicons")
require("nvim-web-devicons").setup(opts)
end
},
opts = function()
return require "configs.nvim-tree"
end,
config = function(_, opts)
require("nvim-tree").setup(opts)
end,
}