conjure

:neovim:+:clj: https://github.com/Olical/conjure - If you're enjoying Conjure and want to say thanks: https://github.com/users/Olical/sponsorship :smile: (alt https://conjure.fun/discord)
martinklepsch 2020-12-08T12:49:59.248300Z

Has it been considered to use babashka for stuff like go-to-definition when the built in methods aren’t set up? (e.g. there’s no cljs REPL connection)

borkdude 2020-12-08T12:51:00.248700Z

@martinklepsch There is such a thing for emacs based on clj-kondo: https://github.com/didibus/anakondo

👌 1
borkdude 2020-12-08T12:51:25.249300Z

Vim iced is also doing something similar when clj-kondo is available on the system path

Olical 2020-12-08T12:52:38.249600Z

Oh interesting!

Olical 2020-12-08T12:52:39.250100Z

So one shot BB calls? Or running a bb REPL for an extended period?

martinklepsch 2020-12-08T13:13:22.250900Z

ah yeah, no idea why I was saying babashka, this is more a clj-kondo thing I guess 😅

borkdude 2020-12-08T13:25:13.251100Z

Btw, from the babashka survey some people used babashka to integrate with vim or emacs to do some linux window manager stuff

mozinator2 2020-12-08T18:37:24.251700Z

It's probably been asked a lot. How can I make vim recognize .bb files as clojure ?

dave 2020-12-08T18:39:31.252200Z

here's a slightly modified version of what i have in my vimrc:

augroup clojure_filetypes
  autocmd!
  autocmd BufNewFile,BufRead  *.cljs.hl,*.boot,*.bb set filetype=clojure
augroup END

👍 1
mozinator2 2020-12-08T18:41:27.252400Z

thanks!

dave 2020-12-08T18:41:54.252700Z

no prob!