git.fiddlerwoaroof.com
Browse code

bug(emacs): disable org-brain for now

Edward authored on 13/12/2020 02:08:27
Showing 1 changed files
... ...
@@ -735,22 +735,23 @@ With a prefix ARG invalidates the cache first."
735 735
 (cl-defmethod fwoar--find-system (&context (major-mode (derived-mode js-mode)))
736 736
   (find-package-json default-directory))
737 737
 
738
-(use-package org-brain :ensure t
739
-  :init
740
-  (setq org-brain-path "~/org-brain/")
738
+(comment
739
+ (use-package org-brain :ensure t
740
+   :init
741
+   (setq org-brain-path "~/org-brain/")
741 742
 
742
-  :config
743
-  (eval-after-load 'evil
744
-    '(evil-set-initial-state 'org-brain-visualize-mode 'emacs))
743
+   :config
744
+   (eval-after-load 'evil
745
+     '(evil-set-initial-state 'org-brain-visualize-mode 'emacs))
745 746
 
746
-  (push '("B" "Brain" plain (function org-brain-goto-end)
747
-          "* %i%?" :empty-lines 1)
748
-        org-capture-templates)
747
+   (push '("B" "Brain" plain (function org-brain-goto-end)
748
+           "* %i%?" :empty-lines 1)
749
+         org-capture-templates)
749 750
 
750
-  (setq org-id-track-globally t
751
-        org-id-locations-file "~/.emacs.d/.org-id-locations"
752
-        org-brain-visualize-default-choices 'all
753
-        org-brain-title-max-length 0))
751
+   (setq org-id-track-globally t
752
+         org-id-locations-file "~/.emacs.d/.org-id-locations"
753
+         org-brain-visualize-default-choices 'all
754
+         org-brain-title-max-length 0)))
754 755
 
755 756
 (setq diary-file (expand-file-name "~/bucket/diary"))
756 757