b0ee301845
Only use them when the spacemacs-helm layer is used.
9 lines
300 B
EmacsLisp
9 lines
300 B
EmacsLisp
(setq rcirc-post-extensions
|
|
'(helm-rcirc))
|
|
|
|
(when (configuration-layer/layer-usedp 'spacemacs-helm)
|
|
(defun rcirc/init-helm-rcirc ()
|
|
(use-package helm-rcirc
|
|
:commands helm-rcirc-auto-join-channels
|
|
:init
|
|
(spacemacs/set-leader-keys "irc" 'helm-rcirc-auto-join-channels))))
|