Enable org-protocol
This commit is contained in:
parent
807052e03a
commit
0fcfe9e6f7
1 changed files with 20 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
|||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(require 'org)
|
||||
(require 'org-capture)
|
||||
#+END_SRC
|
||||
|
||||
Tell org-mode to fontify code blocks in their specified languages.
|
||||
|
@ -21,3 +22,22 @@ Enable automatic text filling for org-mode.
|
|||
#+BEGIN_SRC emacs-lisp
|
||||
(add-hook 'org-mode-hook 'auto-fill-mode)
|
||||
#+END_SRC
|
||||
|
||||
* Org protocol
|
||||
|
||||
Load org-protocol to let external applications add information to
|
||||
org.
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(require 'org-protocol)
|
||||
#+END_SRC
|
||||
|
||||
This template is used by Conkeror to capture a bookmark into my
|
||||
bookmarks file.
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(add-to-list 'org-capture-templates
|
||||
'("b" "Bookmark" entry (file "~/documents/org/bookmarks.org")
|
||||
"* %c\n\n %i"
|
||||
:empty-lines 1))
|
||||
#+END_SRC
|
||||
|
|
Loading…
Reference in a new issue