mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-21 19:18:41 +00:00
[emacs] Add org-sidebar and org-transclusion
This commit is contained in:
parent
372fb3172d
commit
c9250f8412
2 changed files with 24 additions and 0 deletions
|
@ -913,6 +913,28 @@ Adapted from https://org-roam.readthedocs.io/en/master/org_export/.
|
|||
|
||||
(add-hook! 'org-mode-hook #'my/org-roam-writeroom)
|
||||
#+end_src
|
||||
** Sidebar
|
||||
Display a sidebar with file-local todos and scheduling.
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(use-package! org-sidebar
|
||||
:bind (:map org-mode-map
|
||||
(("C-c l v s" . org-sidebar-toggle)
|
||||
("C-c l v S" . org-sidebar-tree-toggle)))
|
||||
:commands (org-sidebar
|
||||
org-sidebar-toggle
|
||||
org-sidebar-tree
|
||||
org-sidebar-tree-toggle))
|
||||
#+end_src
|
||||
** Transclusion
|
||||
Show linked org document sections inline.
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(use-package! org-transclusion
|
||||
:bind (:map org-mode-map
|
||||
("C-c l v t" . org-transclusion-mode))
|
||||
:commands (org-transclusion-mode))
|
||||
#+end_src
|
||||
* Eshell
|
||||
** Change directory in the context of a remote host
|
||||
#+begin_src emacs-lisp
|
||||
|
|
|
@ -26,6 +26,8 @@
|
|||
(package! ox-dnd :recipe (:host github :repo "xeals/emacs-org-dnd"))
|
||||
(package! gnuplot)
|
||||
(package! org-roam-server)
|
||||
(package! org-sidebar :recipe (:host github :repo "alphapapa/org-sidebar"))
|
||||
(package! org-transclusion :recipe (:host github :repo "nobiot/org-transclusion"))
|
||||
(package! nov)
|
||||
(package! org-ref)
|
||||
(package! python-black)
|
||||
|
|
Loading…
Reference in a new issue