diff options
Diffstat (limited to '.config/emacs/modules/bd--dictionary.el')
-rw-r--r-- | .config/emacs/modules/bd--dictionary.el | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.config/emacs/modules/bd--dictionary.el b/.config/emacs/modules/bd--dictionary.el index c46fe7b..79dd2d1 100644 --- a/.config/emacs/modules/bd--dictionary.el +++ b/.config/emacs/modules/bd--dictionary.el @@ -3,9 +3,12 @@ ;;; Code: -(keymap-global-set "C-c i" 'dictionary-lookup-definition) -(setopt dictionary-server "localhost" - dictionary-use-single-buffer t) +(use-package dictionary + :defer t + :bind (("C-c i" . dictionary-lookup-definition)) + :custom + (dictionary-server "localhost") + (dictionary-use-single-buffer t)) (provide 'bd--dictionary) |