mirror of
https://github.com/PriceHiller/ppd.nvim.git
synced 2025-01-02 12:09:17 -06:00
12 lines
244 B
Lua
12 lines
244 B
Lua
|
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
|