From 9ca366e4034e4098df37c81cd6efdd1978eb25f5 Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Thu, 9 Aug 2018 23:58:59 +0200 Subject: [PATCH] Emacs: added org-wiki (fork of Youhei Sasaki (uwabami/org-wiki)) The fork is being used because the original version requires a helm setup while the fork uses ido. --- emacs/emacs.el | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/emacs/emacs.el b/emacs/emacs.el index f3ec411..695116a 100644 --- a/emacs/emacs.el +++ b/emacs/emacs.el @@ -1367,3 +1367,11 @@ signature-file is the path to the file which contains the signature." (use-package spaceline-all-the-icons :after spaceline :config (spaceline-all-the-icons-theme)) + +;; org-wiki +;; A personal wiki system for Emacs +;; Using the verison ofYouhei Sasaki which uses ido instead of helm +(use-package org-wiki + :load-path "org-wiki/" + :config + (setq org-wiki-location "~/wiki"))