chadtree icon indicating copy to clipboard operation
chadtree copied to clipboard

Installation with Packer

Open Trid-collab opened this issue 4 years ago • 5 comments
trafficstars

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'}

Trid-collab avatar Sep 09 '21 09:09 Trid-collab

use({
    "ms-jpq/chadtree",
    branch = "chad",
    run = ":CHADdeps",
})

works for me. (windows)

Neelfrost avatar Sep 09 '21 14:09 Neelfrost

This works for me:

    use({ 'ms-jpq/chadtree', run = 'python3 -m chadtree deps --nvim' })

zeertzjq avatar Sep 23 '21 03:09 zeertzjq

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:

image

I also tried without using opt = true and cmd but still the same.

Nargonath avatar Oct 06 '21 17:10 Nargonath

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.

suruaku avatar Mar 24 '22 08:03 suruaku

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.

This 'technically' works for me too but I still see the message while PackerSync is running for the first time. image

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.

petalas avatar Aug 03 '23 17:08 petalas