mirror of https://github.com/gabehf/nvim-conf.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
547 B
28 lines
547 B
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
|