This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-07-05
Channels
- # announcements (1)
- # asami (21)
- # aws (19)
- # babashka (37)
- # beginners (38)
- # clj-kondo (7)
- # clj-otel (8)
- # clojure (29)
- # clojure-europe (54)
- # clojure-nl (3)
- # clojure-spec (2)
- # clojure-uk (2)
- # clojurescript (15)
- # conjure (1)
- # data-science (1)
- # datomic (21)
- # emacs (6)
- # events (3)
- # figwheel-main (1)
- # gratitude (13)
- # holy-lambda (11)
- # joyride (6)
- # klipse (3)
- # malli (14)
- # missionary (26)
- # nbb (31)
- # omni-trace (2)
- # pathom (3)
- # reagent (1)
- # reitit (1)
- # releases (1)
- # shadow-cljs (24)
- # sql (27)
- # tools-deps (4)
- # vim (21)
Iām in the process of switching my config over from vimscript to lua and it's surprisingly easy.
neovim exposes a lua api that allows for running vimscript code, in addition to loading it natively
You can go further and switch to Fennel š I did this and I am happy now https://www.reddit.com/r/nvim/comments/u28v8n/one_more_nvim_config_with_fennel_i_am_glad_i/
The most benifit I get from the ability to change config with repl-like approach with https://github.com/Olical/aniseed
I looked into that! Seemed a little more complicated than just transitioning over 1-to-1, so I decided to take it one step at a time
I've been using fennel (as a first time Neovim user) and configured a number of plugins, with the help of other repos mentioned in the readme I'm still figuring out which of the very many plugins I actually need š https://github.com/practicalli/neovim-config-redux
@U05254DQM your bootstrapping init.lua looks like exactly what I've been searching for to move my own set up to fennel. Thanks for sharing!
Glad its useful. I picked up much of the more interesting parts of the repository from several peoples repos. Feel free to use what ever you find useful
I'm curious whether anyone with a mostly Lua/fennel config misses the documentation available on VimL files or not? I've migrated to fennel (and back) twice because I miss having docs for configuration vars, options, etc., a quick K
away! Did I miss something? Is there a way of having something similar with fennel, or at least Lua?
will give it a try, thank you!