mirror of
https://github.com/gabehf/nvim-conf.git
synced 2026-03-12 00:40:33 -07:00
[wip] rebuild from scratch
This commit is contained in:
parent
5c607d047b
commit
91ba5541a3
35 changed files with 473 additions and 485 deletions
|
|
@ -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,
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue