- move trash.lua into actions - move system-open from root file to actions - move copypasta code from fs to actions - add file_exists in utils - add rename_loaded_buffers in utils (might need to move that in the future).
9 lines
169 B
Lua
9 lines
169 B
Lua
local M = {}
|
|
|
|
function M.setup(opts)
|
|
require'nvim-tree.actions.system-open'.setup(opts.system_open)
|
|
require'nvim-tree.actions.trash'.setup(opts.trash)
|
|
end
|
|
|
|
return M
|