conjure

2024-07-26T08:34:07.523439Z

HI @nate - interested in your setup for python; anything special or just using out of the box ?

nate 2024-07-29T02:34:08.942999Z

Besides having Conjure installed, I had to install https://github.com/nvim-treesitter/nvim-treesitter and run :TSInstall python to get the Python treesitter driver (got this from the https://github.com/Olical/conjure/wiki/Quick-start:-Python-(stdio). After that, I was able to open up the log buffer and evaluate forms just like in Clojure.

2024-07-29T07:28:40.682649Z

Thanks - I’ve used it successfully like this as well. I have been trying to get a more jupyter lab like experience with conjure but haven’t found the experience I’m looking for especially when it comes to viewing images.

nate 2024-07-30T02:26:11.648299Z

Ah yes, I agree. Neovim doesn't do inline images. I wonder if you could use portal to achieve more of the notebook experience

nate 2024-07-26T05:07:37.588679Z

Used Conjure for a python project over the past few days. Worked like a charm and made development much closer to Clojure than I thought it would. Thank you!

➕ 1
emilaasa 2024-07-29T11:42:16.096459Z

Great to hear! I'm curious, did you do any tweaks or did you run the default configuration?

nate 2024-07-29T17:55:24.873149Z

I just used the default config. It didn't work till I installed the python treesitter library, but that was fairly straightforward.

nate 2024-07-29T17:56:08.633919Z

One thing I had to get used to is that nothing is pretty printed, so I ended up using a liberal amount of pprint.pp(...)