ppd.nvim/tests/utils/utils.lua

12 lines
244 B
Lua
Raw Permalink Normal View History

2024-07-06 06:08:49 -05:00
local path_utils = require("tests.utils.paths")
local M = {}
M.paths = path_utils
--- Register the main plugin on the runtimepath
M.rtp_register_plugin = function()
vim.opt.runtimepath:append(path_utils.static.plugin_dir())
end
return M