summaryrefslogtreecommitdiff
path: root/emacs/.emacs.d/init.el
diff options
context:
space:
mode:
Diffstat (limited to 'emacs/.emacs.d/init.el')
-rw-r--r--emacs/.emacs.d/init.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/emacs/.emacs.d/init.el b/emacs/.emacs.d/init.el
index 8b63995..cfbc5a2 100644
--- a/emacs/.emacs.d/init.el
+++ b/emacs/.emacs.d/init.el
@@ -45,17 +45,17 @@
(ivy-mode 1))
;; --- ORG MODE ---
-(use-package org
+(use-package org-ql
+ :demand t
:mode
(("\\.org$" . org-mode))
:init
(add-to-list 'auto-mode-alist `(,(expand-file-name "~/org/") . org-mode))
:bind
- (("C-c a" . org-agenda))
+ (("C-c a" . bab/org-agenda))
:config
(load-file "~/.emacs.d/org-mode.el")
- (load-if-exists "~/.emacs.d/org-mode.local.el")
- )
+ (load-if-exists "~/.emacs.d/org-mode.local.el"))
;; --- PROJECTS ---
(use-package projectile