Neovim/lua/plugins/nvim-tree.lua

42 lines
1.1 KiB
Lua

return {
{
"nvim-tree/nvim-tree.lua",
opts = {
hijack_cursor = true,
renderer = {
full_name = true,
group_empty = true,
special_files = {},
symlink_destination = false,
indent_markers = {
enable = true,
},
icons = {
git_placement = "signcolumn",
show = {
file = true,
folder = true,
folder_arrow = true,
git = true,
},
},
},
update_focused_file = {
enable = true,
update_root = true,
ignore_list = { "help" },
},
diagnostics = {
enable = true,
show_on_dirs = true,
icons = {
hint = "",
info = "",
warning = "",
error = "",
}
},
}
},
}