1
0
Fork 0
mirror of https://codeberg.org/Mo8it/dotfiles.git synced 2024-10-17 20:52:40 +00:00
dotfiles/.config/nvim/lua/plugins/nvim-tree.lua
2022-08-21 21:04:31 +02:00

23 lines
302 B
Lua

require("nvim-tree").setup({
view = {
mappings = {
list = {
{ key = "d", action = "trash" },
},
},
},
actions = {
open_file = {
quit_on_open = true,
},
},
trash = {
require_confirm = false,
},
filesystem_watchers = {
enable = true,
},
git = {
ignore = false,
},
})