aboutsummaryrefslogtreecommitdiffstats
path: root/emacs
diff options
context:
space:
mode:
authorGravatar Tom Willemse2016-11-24 21:45:37 +0100
committerGravatar Tom Willemse2016-11-24 21:45:37 +0100
commit0fcfe9e6f7c4279f9742675393f0220f16c02c5c (patch)
tree75dc5631a866c862081761c3ab4dc928a58d3545 /emacs
parent807052e03afd8538c9398a4457c7049c2207e8cb (diff)
downloadnew-dotfiles-0fcfe9e6f7c4279f9742675393f0220f16c02c5c.tar.gz
new-dotfiles-0fcfe9e6f7c4279f9742675393f0220f16c02c5c.zip
Enable org-protocol
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/init/oni-org-init.org20
1 files changed, 20 insertions, 0 deletions
diff --git a/emacs/.emacs.d/init/oni-org-init.org b/emacs/.emacs.d/init/oni-org-init.org
index a7ea4f0..36f7be3 100644
--- a/emacs/.emacs.d/init/oni-org-init.org
+++ b/emacs/.emacs.d/init/oni-org-init.org
@@ -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