This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-02-12
Channels
- # aleph (22)
- # aws (7)
- # babashka (17)
- # beginners (69)
- # chlorine-clover (9)
- # cider (2)
- # clj-kondo (3)
- # cljdoc (30)
- # clojure (113)
- # clojure-dev (30)
- # clojure-europe (11)
- # clojure-italy (2)
- # clojure-nl (16)
- # clojure-spec (1)
- # clojure-sweden (3)
- # clojure-uk (17)
- # clojurescript (77)
- # cryogen (12)
- # data-science (5)
- # datomic (27)
- # duct (2)
- # emacs (37)
- # fulcro (24)
- # graphql (2)
- # kaocha (1)
- # lambdaisland (27)
- # leiningen (4)
- # off-topic (15)
- # onyx (1)
- # other-lisps (3)
- # re-frame (94)
- # reagent (2)
- # reitit (20)
- # ring (1)
- # shadow-cljs (66)
- # spacemacs (5)
- # sql (59)
- # tools-deps (140)
- # vim (1)
- # xtdb (17)
I just want to say... thank god for winner-mode đ . winner-undo is a must for not missing minutes and hours of shuffling windows around.
indeed, minimalism is one of the features haha. Only redo and undo is available
when it comes to windows there's also the rotate
package that helps move windows between frames and change layouts. Still learning how to use it
Hey! Iâm trying to make emacs my main editor (switching from vsc). At work I currently use JS/typescript so I wanted to setup some syntax highlighting etc. I found that there are supposed to be packages like company-mode
and typescrip-mode
that I should install, but when I M-x and package-install or packages-list, these packages arenât available to be installed. Why could that be? My init has these ->
(require 'package)
(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
'("marmalade" . " ") t)
(add-to-list 'package-archives
'("melpa2" . " ") t)
(add-to-list 'package-pinned-packages '(cider . "melpa-stable") t)
(add-to-list 'package-pinned-packages '(magit . "melpa-stable") t)
(package-initialize)
:thinking_face: I didnât do the step you mentioned, let me see.
fwiw, when i first to M-x package-list-packages, the list of things doesn't appear to fully populate immediately.
AhâŠI shouldnât have looked for typescript-mode
but just typescript
instead?
Super weird.
26.3 (Iâm on osx)
ok, that's the same -- i asked because typescript-mode has a requires here of emacs-24.3
Do you mind sharing your packages setup from init?
Maybe thereâs something messed up in my config.
I tried the code snippet you sent but am getting an error Invalid read syntax: . in wrong context
hmm...i'll double-check in the mean time, the last answer at the emacs stackexchange link might be worth a look
i copy-pasted:
(defun package-settings ()
(use-package package
:config
(package-initialize) ; XXX: wasn't getting full list of packages otherwise
(add-to-list 'package-archives
'("melpa" . " "))
(add-to-list 'package-archives
'("lambdaisland" . " ") t)
(add-to-list 'package-archives
'("melpa-stable" . " "))
(add-to-list 'package-archives
'("replique" .
" ") t)))
evaluated the defun and then called the function. seemed to work here...in any case, if you just use the parts after :config (with some suitable delimiter removal at the end) it should work.
đ working on it
(package-initialize) ; XXX: wasn't getting full list of packages otherwise
(add-to-list 'package-archives
'("melpa" . " "))
(add-to-list 'package-archives
'("lambdaisland" . " ") t)
(add-to-list 'package-archives
'("melpa-stable" . " "))
(add-to-list 'package-archives
'("replique" .
" ") t)
Dunno lol, I copied your config, I went through the advices in link you posted and still canât get the correct results.
Nevermind, I will try and dig into it more later. Thank you for your assistance anyway @sogaiu
@peb.brzezinski hope it can work out for you before long