This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-06-23
Channels
- # announcements (3)
- # aws (1)
- # beginners (44)
- # biff (6)
- # calva (31)
- # cider (26)
- # clerk (12)
- # clj-kondo (9)
- # clojure (17)
- # clojure-dev (18)
- # clojure-europe (13)
- # clojure-norway (45)
- # clojure-uk (4)
- # clojurescript (34)
- # datomic (54)
- # dev-tooling (14)
- # emacs (19)
- # events (7)
- # honeysql (2)
- # hyperfiddle (51)
- # lsp (34)
- # malli (24)
- # matrix (1)
- # missionary (5)
- # off-topic (27)
- # re-frame (6)
- # reagent (18)
- # releases (2)
- # sci (6)
- # shadow-cljs (88)
- # vim (9)
Quick question to the meow users: any of you willing to share their configs? As an evil user due to fear of eMacs pinky leading to rsi I’m really interested but can’t quite wrap my head arround actual usage without seeing some code 😅
https://github.com/corgi-emacs/corgi Corgi Emacs is a nice and simple Clojure-oriented setup built around evil-mode. It's the starting point for my own config; I particularly like the way it handles keybindings.
I actually took a lot of babashka repl code from corgi, it’s really awesome
oh, I also totally missed the "meow" part of your original comment, whoops 🙃
All emacs suggestions are good, right 😎
if that’s the case… i know i remapped caps-lock to left-control a few years ago and never looked back!
Oh, thx @U1UQEM078 , didn’t know that
https://faster-than-light-memes.xyz/emacs-clojure-lispy-mind-meld.html https://github.com/benjamin-asdf/dotfiles/blob/master/mememacs/.emacs-mememacs.d/lisp/init-meow.el
IIUC, there's combobulate, @U0525KG62
I think that is the one I'm waiting for. Bring paredit to all the languages. I don't think anyone has done a lisp/clojure mode for it yet. afaiu
How do I fix buttercup describe
indentation? Or anything in Elisp really, put-clojure-indent
style?
I probably had it working at some point 😞
I'm getting Unlocking file: File name too long, /home/pavlos/.local/share/emacs/undo-tree/.!home!pavlos!Workspace!zzzzzzzzzzzzzzzzzz!zzzzzzzz!zzzzzzzzzzzzzzzz!zzzz!zzzzzzz!zzzzzzzzzzzzzzzzz!zzzzzzzzzzzzzzzzzzzzzzzzzzz.clj.~undo-tree~, ignored
whenever I edit+save specific buffers that are deep in the file hierarchy...
Any ideas how to solve that? Google doesn't help and I can't find any relevant variables under undo-tree to override the max length :thinking_face: Happy to be pointed to a resource to study further, thanks!
update: Oh, it seems it's an Ubuntu limit, apparently file names can't be more than 140something characters long... Still, if you have any pointers for solving this from within emacs I'd love to hear them 🙂
grepping for defcustoms in undo-tree.el
I found undo-tree-auto-save-history
that should be it?
Yup, that works... I think I read somewhere that you shouldn't disable that variable but I can't find it now; I probably misremembered :thinking_face: Thanks!