Fork me on GitHub
#emacs
<
2022-11-19
>
macrobartfast19:11:18

M-x package-install doesn’t show clojure-mode, even after M-x package-refresh-contents… thoughts?

dpsutton20:11:53

which repositories do you have registered? elpa, melpa, etc?

macrobartfast20:11:15

I seem to have both these, for starters (both are here because I was, I’m sure, flailing in the past and copy-pasta’ing duplicate variations into my init.el):

(add-to-list 'package-archives '("tromey" . "") t)

(add-to-list 'package-archives '("melpa" . "") t)

(add-to-list 'package-archives '("melpa-stable" . "") t)

(add-to-list 'package-archives '("melpa" . "") t)

(add-to-list 'package-archives '("melpa" . ""))

(add-to-list 'package-pinned-packages '(cider . "melpa-stable") t)
lol. I’m open to suggestions of what to cull.

Cora (she/her)20:11:38

I'm not sure how to fix this directly but straight.el lets you install from github which is really nice

Cora (she/her)20:11:52

combined with use-package you can get the latest of everything with some nice syntax for hooks and stuff

macrobartfast01:11:10

Thanks! I’ll try to figure that out.