chadtree
chadtree copied to clipboard
Installation with Packer
Pardon me if this sounds like trivial request, I am asking as I am new to this.
How do I translate this below for use with Packer. In Packer the only thing I do is use{
Plug 'ms-jpq/chadtree', {'branch': 'chad', 'do': 'python3 -m chadtree deps'}
use({
"ms-jpq/chadtree",
branch = "chad",
run = ":CHADdeps",
})
works for me. (windows)
This works for me:
use({ 'ms-jpq/chadtree', run = 'python3 -m chadtree deps --nvim' })
I'm using:
use({
"ms-jpq/chadtree",
branch = "chad",
opt = true,
cmd = { "CHADopen" },
run = "python3 -m chadtree deps --nvim",
})
But I have an error when I run: :CHADdeps:

I also tried without using opt = true and cmd but still the same.
use {'ms-jpq/chadtree', branch = 'chad', run = 'python3 -m chadtree deps' }
See packer docs
You can find there how to use branch and run commands.
use {'ms-jpq/chadtree', branch = 'chad', run = 'python3 -m chadtree deps' }See packer docs You can find there how to use
branchandruncommands.
This 'technically' works for me too but I still see the message while PackerSync is running for the first time.
I can press enter twice and quit and then it's all fine after that, but is there a way to configure packer for a 'clean' installation?
I've also tried it with the --nvim flag and it doesn't make a difference as far as I can tell.
Interestingly for coq (which has a similar installation logic afaik) it installs cleanly with run = 'python3 -m coq deps' (don't see the equivalent message to run :COQdeps)
@ms-jpq would you happen to know how to configure packer for a 'no touch' clean installation? Sorry if I'm missing something obvious.