Usage with Neovim #278
-
First let me say that I'm finding the design of As a test case I installed I wanted to take it a step further over the holiday break so I've been attempting to replace packages installed with Homebrew with their counterparts from the Pantry. Thus far this is working out quite well using the Next I fired up my preferred editor, Neovim, and realized a couple of plugins I use were not working. After doing some digging (
Not that big a deal, it only took me a couple of minutes set these up, but I'm wondering if there's something I'm missing. Is there an approach I should be taking to make my editor aware of Thanks for this fantastic project and happy holidays! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
There was a PR, but possibly no documentation, that allowed the following to work: |
Beta Was this translation helpful? Give feedback.
-
Hi John! So glad you are enjoying tea as that is what I truly hoped when we started this project: for it to become a delightful tool for all developers of all stacks everywhere. We are planning to write a VSCode extension that magically makes any deps you need available as virtual environments for each project when you open them, this work will help us understand how we can do the same for all such editors, including NeoVIM. Our approach is new so editors etc. will need us and the community to come up with ideas for how integrations will work. Some of these ideas may have to be innovations! And those innovations will lead to more stable ideas that the editors can adopt. Or those ideas may just work so that nothing more is needed. Certainly the tea-symlink system is working for now (I use this so extensions find their tools with VSCode as an interim solution until we make the viscose extension). Though longer term I feel you should only need to “install” tools that represent some level of permanence in your day to day workflows. Anyway, would love to hear your thoughts and we're here to help you with tea! Thanks again. |
Beta Was this translation helpful? Give feedback.
There was a PR, but possibly no documentation, that allowed the following to work:
sudo ln -s tea /usr/local/bin/jq
, etc. This should satisfy anything that requires finding binaries on your path, as long as it's ok with symlinks. Basically, any symlinks to thetea
binary functions the same astea -X foo
, wherefoo
is the basename of the symlink.