mirror of
https://github.com/Foltik/dotfiles
synced 2024-11-27 21:19:51 -05:00
Add emacs ob-ipython
This commit is contained in:
parent
f504d99475
commit
6e648c076e
@ -613,7 +613,8 @@ Defines expansions with =<= followed by a string in org-mode.
|
|||||||
*** Source Blocks
|
*** Source Blocks
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(setq jf-org-source-structure-templates
|
(setq jf-org-source-structure-templates
|
||||||
'(("el" "#+BEGIN_SRC emacs-lisp\n?\n#+END_SRC")))
|
'(("el" "#+BEGIN_SRC emacs-lisp\n?\n#+END_SRC")
|
||||||
|
("ipy" "#+BEGIN_SRC ipython :session :results raw drawer\n?\n#+END_SRC")))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** All
|
*** All
|
||||||
Tie it all together.
|
Tie it all together.
|
||||||
@ -674,6 +675,12 @@ Goodize the refiling targets to allow refiling and copying to arbitrary subtrees
|
|||||||
("NEXT" ("WAITING") ("CANCELLED") ("HOLD"))
|
("NEXT" ("WAITING") ("CANCELLED") ("HOLD"))
|
||||||
("DONE" ("WAITING") ("CANCELLED") ("HOLD")))))
|
("DONE" ("WAITING") ("CANCELLED") ("HOLD")))))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
** Org Languages
|
||||||
|
Languages which can be evaluated in Org buffers.
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(setq jf-org-babel-languages
|
||||||
|
'((emacs-lisp . t) (ipython . t)))
|
||||||
|
#+END_SRC
|
||||||
** Org-mode
|
** Org-mode
|
||||||
Keep org-mode up to date straight from the cow's utters.
|
Keep org-mode up to date straight from the cow's utters.
|
||||||
If the manual is not on your computer, it's [[https://orgmode.org/manual/][here]].
|
If the manual is not on your computer, it's [[https://orgmode.org/manual/][here]].
|
||||||
@ -683,7 +690,8 @@ If the manual is not on your computer, it's [[https://orgmode.org/manual/][here]
|
|||||||
:mode ("\\.org\\'" . org-mode)
|
:mode ("\\.org\\'" . org-mode)
|
||||||
:hook ((org-mode . org-indent-mode)
|
:hook ((org-mode . org-indent-mode)
|
||||||
(org-capture-mode . evil-insert-state)
|
(org-capture-mode . evil-insert-state)
|
||||||
(org-capture-mode . jf-update-capture-tags))
|
(org-capture-mode . jf-update-capture-tags)
|
||||||
|
(org-babel-after-execute . org-display-inline-images))
|
||||||
|
|
||||||
:config
|
:config
|
||||||
(org-clock-persistence-insinuate)
|
(org-clock-persistence-insinuate)
|
||||||
@ -720,7 +728,10 @@ If the manual is not on your computer, it's [[https://orgmode.org/manual/][here]
|
|||||||
(org-todo-keyword-faces jf-org-todo-faces)
|
(org-todo-keyword-faces jf-org-todo-faces)
|
||||||
(org-todo-state-tags-triggers jf-org-todo-state-tags-triggers)
|
(org-todo-state-tags-triggers jf-org-todo-state-tags-triggers)
|
||||||
(org-use-fast-todo-selection t)
|
(org-use-fast-todo-selection t)
|
||||||
(org-treat-S-cursor-todo-selection-as-state-change nil))
|
(org-treat-S-cursor-todo-selection-as-state-change nil)
|
||||||
|
(org-babel-load-languages jf-org-babel-languages)
|
||||||
|
(org-confirm-babel-evaluate nil)
|
||||||
|
(org-startup-with-inline-images t))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Evil Org-mode
|
** Evil Org-mode
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
@ -1437,6 +1448,11 @@ Mode for editing YAML files.
|
|||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package yaml-mode
|
(use-package yaml-mode
|
||||||
:mode "\\.yaml\\'")
|
:mode "\\.yaml\\'")
|
||||||
|
**** ob-ipython
|
||||||
|
Allows embedding ipython in org mode files. See the [[https://github.com/gregsexton/ob-ipython][github]] for tips, tricks, and tutorials.
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package ob-ipython)
|
||||||
|
#+END_SRC
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
*** Arch PKGBUILD
|
*** Arch PKGBUILD
|
||||||
|
@ -11,7 +11,6 @@
|
|||||||
(defun jf-resume-gc ()
|
(defun jf-resume-gc ()
|
||||||
(setq gc-cons-threshold jf-gc-threshold))
|
(setq gc-cons-threshold jf-gc-threshold))
|
||||||
|
|
||||||
|
|
||||||
(message "-> Initializing Electronic Macs...")
|
(message "-> Initializing Electronic Macs...")
|
||||||
|
|
||||||
;; Don't garbage collect during init
|
;; Don't garbage collect during init
|
||||||
|
Loading…
Reference in New Issue
Block a user