* refactor: improve API readability, tidy actions modules * Apply requested changes * `actions/reloaders/reloaders.lua` -> `actions/reloaders.lua` --------- Co-authored-by: Alexander Courtis <alex@courtis.org>
11 lines
189 B
Lua
11 lines
189 B
Lua
local M = {}
|
|
|
|
M.change_dir = require "nvim-tree.actions.root.change-dir"
|
|
M.dir_up = require "nvim-tree.actions.root.dir-up"
|
|
|
|
function M.setup(opts)
|
|
M.change_dir.setup(opts)
|
|
end
|
|
|
|
return M
|