initialize with first claude code interation
Some checks failed
tests / test (push) Failing after 7s
Some checks failed
tests / test (push) Failing after 7s
This commit is contained in:
17
tests/minimal_init.lua
Normal file
17
tests/minimal_init.lua
Normal file
@@ -0,0 +1,17 @@
|
||||
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",
|
||||
data_path .. "/site/pack/core/opt/plenary.nvim",
|
||||
data_path .. "/site/pack/core/start/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")
|
||||
Reference in New Issue
Block a user