Skip to content
This repository was archived by the owner on Jul 13, 2020. It is now read-only.

Commit b7af786

Browse files
committed
websocket & zmq init
1 parent d9d22d6 commit b7af786

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

packages.el

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,18 @@
3232
(defconst jupyter-packages
3333
'(
3434
company
35-
jupyter
35+
(jupyter :location (recipe :fetcher file :path "~/.spacemacs.d/emacs-jupyter"))
36+
;; (jupyter :location local)
37+
;; jupyter
3638
smartparens
39+
websocket
40+
zmq
3741
))
38-
3942
(defun jupyter/init-jupyter ()
4043
(if (executable-find "jupyter")
4144
(use-package jupyter
4245
:defer t
46+
:demand t
4347
:init
4448
(progn
4549
(spacemacs/set-leader-keys
@@ -84,4 +88,12 @@
8488
(defun jupyter/post-init-smartparens ()
8589
(add-hook 'jupyter-repl-mode-hook 'smartparens-mode))
8690

91+
(defun jupyter/init-websocket ()
92+
(use-package websocket
93+
:defer t))
94+
95+
(defun jupyter/init-zmq ()
96+
(use-package zmq
97+
:defer t))
98+
8799
;;; packages.el ends here

0 commit comments

Comments
 (0)