Files
test-samurai-go-runner/tests/minimal_init.lua
M.Schirmer d0512b43c9
Some checks failed
tests / test (push) Failing after 44s
add fine tuning and unit testing
2025-12-31 21:25:35 +01:00

16 lines
346 B
Lua

vim.cmd("set rtp^=.")
local data_path = vim.fn.stdpath("data")
local plenary_paths = {
data_path .. "/site/pack/packer/start/plenary.nvim",
data_path .. "/lazy/plenary.nvim",
}
for _, path in ipairs(plenary_paths) do
if vim.fn.isdirectory(path) == 1 then
vim.cmd("set rtp^=" .. path)
end
end
vim.cmd("runtime! plugin/plenary.vim")