Fork me on GitHub
#emacs
<
2022-12-14
>
stand17:12:21

I did a package refresh last night and now my prelude install chokes on start up. Can't load helm-config . It happens with a fresh prelude install also. Anyone else having this problem? Emacs 27.1

Byron Clark22:12:47

This change to prelude got my config working again:

diff --git a/modules/prelude-helm.el b/modules/prelude-helm.el
index 93ce2aa..75b0e5f 100644
--- a/modules/prelude-helm.el
+++ b/modules/prelude-helm.el
@@ -33,7 +33,6 @@

 (prelude-require-packages '(helm helm-projectile))

-(require 'helm-config)
 (require 'helm-projectile)

 (when (executable-find "curl")

👍 1
Byron Clark22:12:09

I’ll make a PR for prelude with the details.

stand22:12:06

Thanks, Byron!

Drew Verlee21:12:09

will anything do this re-formatting for me?

{:a :b :c :d} -> {:a :b
                  :c :d}
                      

russmatney22:12:38

if you're willing to go all the way into aggressive-indent-mode, this is would be done just by adding a newline after :b - definitely an opinionated route though!

👀 2
pavlosmelissinos23:12:25

I use cider-format-edn-region a lot: https://docs.cider.mx/cider/usage/misc_features.html#formatting-edn (it requires an active REPL, obviously 🙂)

👀 2
👍 1
Drew Verlee23:12:27

Awesome thanks for the help.

diego.videco19:12:12

I use lispy, M over one of the curly braces will do that.

alandipert21:12:14

not that i'm aware of, but if you make the newlines yourself you could use align-regexp on the result to align the keywords into columns

escherize22:12:54

align-regexp is king 👑

yes 2