diff options
-rw-r--r-- | lisp/init-bog.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/init-bog.el b/lisp/init-bog.el index c06ad51..820c09c 100644 --- a/lisp/init-bog.el +++ b/lisp/init-bog.el @@ -1,12 +1,13 @@ (add-to-list 'load-path "~/src/emacs/bog/") (require 'bog-autoloads) -(setq bog-keymap-prefix (kbd "C-c b") - bog-subdirectory-group 2 +(setq bog-subdirectory-group 2 bog-use-citekey-cache t) +(setq bog-keymap-prefix (kbd "C-c b")) + (add-hook 'org-mode-hook 'bog-mode) -(global-set-key (kbd "C-c B") 'bog-commander) +(global-set-key bog-keymap-prefix bog-command-map) (provide 'init-bog) |