[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

27
lua/configs/nvim-tree.lua Normal file
View file

@ -0,0 +1,27 @@
local function on_attach(bufnr)
local api = require "nvim-tree.api"
api.config.mappings.default_on_attach(bufnr)
end
local M = {
disable_netrw = true,
on_attach = on_attach,
git = { ignore = false },
renderer = {
icons = {
glyphs = {
git = { -- this is so stupid lmao
unstaged = "😴",
staged = "😎",
unmerged = "😈",
untracked = "😭",
renamed = "😶",
deleted = "😵",
},
},
},
},
}
return M