mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-08 10:31:38 -05:00

Load ein-shared-output explicitly as it is not loaded from ein-notebook.el anymore. Otherwise, I get: WARNING: Keymap ein:shared-output-mode-map not found
17 lines
624 B
EmacsLisp
17 lines
624 B
EmacsLisp
(add-to-list 'load-path "~/.emacs.d/el-get/ein/lisp/")
|
|
(add-to-list 'load-path "~/.emacs.d/el-get/websocket/")
|
|
(add-to-list 'load-path "~/.emacs.d/el-get/nxhtml/util/") ; mumamo
|
|
(add-to-list 'load-path "~/.emacs.d/el-get/auto-complete/")
|
|
(add-to-list 'load-path "~/.emacs.d/el-get/popup/") ; for auto-complete
|
|
|
|
(require 'ein-notebooklist)
|
|
(require 'ein-shared-output)
|
|
(require 'ein-mumamo)
|
|
(require 'ein-ac)
|
|
(require 'ein-connect)
|
|
(require 'ein-iexec)
|
|
(require 'ein-helm)
|
|
|
|
;; Load `wid-edit'. Otherwise the following error will be raised:
|
|
;; Symbol's function definition is void: widget-button-press
|
|
(require 'wid-edit)
|