vim

For discussion on all things (neo)vim.
Olical 2020-05-04T10:53:53.081Z

Conjure v3 is out! A full rewrite! https://github.com/Olical/conjure/releases/tag/v3.0.0 * It runs entirely inside Neovim's LuaJIT now. No extra JVM or AOT compile step involved. * It's written in Fennel, a Lisp, and compiled to Lua using Aniseed https://github.com/Olical/aniseed * Based on nREPL (and optional CIDER middleware) now instead of prepl. So it works with shadow-cljs/babashka etc! * It supports more than Clojure, so far it's just Fennel+Aniseed but I'll be adding Racket and Janet (and more!) ASAP. I hope it's interesting to non-Conjure users and a welcome upgrade for users of older versions! Enjoy 🎉 😄 https://asciinema.org/a/325517

👏 11
yiorgos 2020-05-04T18:19:15.083300Z

Which colorschme is the one from the video?

Olical 2020-05-04T18:20:50.083500Z

If asciinema is being faithful to my colours it is https://github.com/srcery-colors/srcery-vim

Olical 2020-05-04T18:21:11.083800Z

I applied this theme at my terminal (Kitty) level and in Neovim https://srcery-colors.github.io/

Olical 2020-05-04T18:21:34.084100Z

Conjure + Srcery 😄

yiorgos 2020-05-04T18:42:55.084500Z

Thanks 👍

b-ryan 2020-05-04T20:27:30.084800Z

This looks pretty wild. I am definitely gonna check out conjure, thanks.

b-ryan 2020-05-04T20:30:20.087900Z

I have tried using neovim a few times over the past few months, but there's one issue which keeps causing me issues. For whatever reason, every now and then nrepl or fireplace will get stuck. When I try to evaluate something, even if it's simple like (inc 1), something happens and all of neovim freezes. With plain old vim, I can ctrl+c and the neovim command gets killed and I can go back to editing. Usually I then restart the JVM and I can get back to what I was doing. But with neovim the ctrl+c does not work and I have to either kill the process or maybe even kill -9 the neovim process. Does anyone have experience here or know of a way to deal with it?

tpope 2020-05-07T05:19:01.088900Z

does the same hang happen if you (Thread/sleep 60000)?

b-ryan 2020-05-09T00:22:37.089600Z

Hey tpope! Yes - same behavior with the sleep.