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

24 lines
302 B
Lua
Raw Normal View History

2022-06-27 17:41:39 +00:00
require("nvim-tree").setup({
view = {
mappings = {
list = {
{ key = "d", action = "trash" },
},
},
},
actions = {
open_file = {
quit_on_open = true,
},
},
trash = {
require_confirm = false,
},
2022-07-26 01:03:56 +00:00
filesystem_watchers = {
enable = true,
},
2022-08-21 19:04:31 +00:00
git = {
ignore = false,
},
2022-06-27 17:41:39 +00:00
})