about summary refs log tree commit diff
path: root/configs/shared/emacs/.emacs.d/wpc/packages/wpc-org.el
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2019-03-20T15·08+0000
committerWilliam Carroll <wpcarro@gmail.com>2019-03-20T15·08+0000
commit99081758781bb1d25a427a95f4c2a0d25412957a (patch)
treec0bbb2a0fbca1aa442f70cfb75ac449e1565de61 /configs/shared/emacs/.emacs.d/wpc/packages/wpc-org.el
parenta810a7477180b12d5e0ce4f8d13fb35e400099ba (diff)
Remove org-mode's M-{h,j,k,l} conflicting KBDs
This is a bit of a workaround since ideally wpc/ensure-kbds and wpc/kbds minor
mode should eclipse the major-mode's KBDs. I couldn't fully debug the issue, and
in the interest of getting on with things, I resolved to just unbind those keys.
Diffstat (limited to 'configs/shared/emacs/.emacs.d/wpc/packages/wpc-org.el')
-rw-r--r--configs/shared/emacs/.emacs.d/wpc/packages/wpc-org.el18
1 files changed, 12 insertions, 6 deletions
diff --git a/configs/shared/emacs/.emacs.d/wpc/packages/wpc-org.el b/configs/shared/emacs/.emacs.d/wpc/packages/wpc-org.el
index a6e108e93860..836706faaaa4 100644
--- a/configs/shared/emacs/.emacs.d/wpc/packages/wpc-org.el
+++ b/configs/shared/emacs/.emacs.d/wpc/packages/wpc-org.el
@@ -6,8 +6,6 @@
 
 ;;; Code:
 
-(getenv "ORG_DIRECTORY")
-
 ;; TODO: figure out how to nest this in (use-package org ...)
 (setq org-capture-templates
       `(
@@ -37,17 +35,25 @@
 
 (use-package org
   :config
-  ; (general-add-hook org-mode-hook (disable linum-mode))
+  (general-add-hook 'org-mode-hook
+                    ;; TODO: consider supporting `(disable (list linum-mode company-mode))'
+                    (list (disable linum-mode)
+                          (disable company-mode)))
   (general-define-key :prefix "C-c"
            "l" #'org-store-link
            "a" #'org-agenda
            "c" #'org-capture)
   (setq org-todo-keywords
         '((sequence "TODO" "BLOCKED" "DONE")))
-  (setq org-default-notes-file (wpc/org-file "notes"))
+  (setq org-default-notes-file (f-join (getenv "ORG_DIRECTORY") "notes.org"))
   (setq org-log-done 'time)
-  (setq org-agenda-files (list (wpc/org-file "work")
-                               (wpc/org-file "personal"))))
+  (setq org-agenda-files (list (f-join (getenv "ORG_DIRECTORY") "work.org")
+                               (f-join (getenv "ORG_DIRECTORY") "personal.org")))
+  ;; TODO: troubleshoot why `wpc/kbds-minor-mode', `wpc/ensure-kbds' aren't
+  ;; enough to override the following KBDs. See this discussion for more context
+  ;; on where the idea came from:
+  ;; https://stackoverflow.com/questions/683425/globally-override-key-binding-in-emacs
+  (general-unbind 'normal org-mode-map "M-h" "M-j" "M-k" "M-l"))
 
 (use-package org-bullets
   :after (org)