mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-06 09:31:39 -05:00
12 lines
504 B
EmacsLisp
12 lines
504 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-dev)
|
|
(ein:dev-require-all)
|
|
|
|
;; Load `wid-edit'. Otherwise the following error will be raised:
|
|
;; Symbol's function definition is void: widget-button-press
|
|
(require 'wid-edit)
|