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-07-26 03:03:56 +02:00

20 lines
271 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,
},
})