-
-
Notifications
You must be signed in to change notification settings - Fork 638
Closed
Labels
Description
Hi
This is more of a question as I couldn't find an answer in the doc folder of nvim-tree.
Is it possible to get this type of view when git is activated?

basically what I am after is to just show M next to the files that are modified like in the picture attached, and to highlight the directory that file is in, same as in the attached picture.
local M = {
"nvim-tree/nvim-tree.lua",
dependencies = { "nvim-tree/nvim-web-devicons" },
event = "VeryLazy",
}
function M.config()
local function my_on_attach(bufnr)
local api = require("nvim-tree.api")
local function opts(desc)
return {
desc = "nvim-tree: " .. desc,
buffer = bufnr,
noremap = true,
silent = true,
nowait = true,
}
end
api.config.mappings.default_on_attach(bufnr)
vim.keymap.set("n", "l", api.node.open.edit, opts("Open"))
vim.keymap.set("n", "h", api.node.navigate.parent_close, opts("Close Directory"))
vim.keymap.set("n", "v", api.node.open.vertical, opts("Open: Vertical Split"))
vim.keymap.del("n", "<C-k>", {
buffer = bufnr,
})
vim.keymap.set("n", "<S-k>", api.node.open.preview, opts("Open Preview"))
end
local icons = require("lp.icons")
require("nvim-tree").setup({
hijack_netrw = false,
sync_root_with_cwd = true,
renderer = {
add_trailing = false,
group_empty = false,
highlight_git = true,
full_name = false,
highlight_opened_files = "all",
root_folder_label = ":t",
indent_markers = {
enable = true,
icons = {
corner = "└",
edge = "│",
item = "├",
none = " ",
},
},
icons = {
git_placement = "after",
padding = " ",
symlink_arrow = " ➛ ",
glyphs = {
default = icons.ui.Text,
symlink = icons.ui.FileSymlink,
bookmark = icons.ui.BookMark,
folder = {
arrow_closed = icons.ui.ChevronRight,
arrow_open = icons.ui.ChevronShortDown,
default = icons.ui.Folder,
open = icons.ui.FolderOpen,
empty = icons.ui.EmptyFolder,
empty_open = icons.ui.EmptyFolderOpen,
symlink = icons.ui.FolderSymlink,
symlink_open = icons.ui.FolderOpen,
},
git = {
unstaged = "",
staged = "",
unmerged = "",
renamed = "",
untracked = "",
deleted = "",
ignored = "",
},
},
},
special_files = { "Makefile", "README.md", "readme.md" },
symlink_destination = true,
},
update_focused_file = {
enable = true,
debounce_delay = 15,
update_root = true,
ignore_list = {},
},
diagnostics = {
enable = true,
show_on_dirs = true,
show_on_open_dirs = true,
debounce_delay = 50,
severity = {
min = vim.diagnostic.severity.HINT,
max = vim.diagnostic.severity.ERROR,
},
icons = {
hint = icons.diagnostics.BoldHint,
info = icons.diagnostics.BoldInformation,
warning = icons.diagnostics.BoldWarning,
error = icons.diagnostics.BoldError,
},
},
git = {
enable = true,
ignore = false,
show_on_dirs = true,
timeout = 400,
},
trash = {
cmd = "gio trash",
},
})
end
return M
Thanks