diff options
author | bd <bdunahu@operationnull.com> | 2024-12-20 23:54:47 -0500 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2024-12-20 23:54:47 -0500 |
commit | 8c56be82235e4112210b7990ca4dd1f761fa1401 (patch) | |
tree | 22456ec8840dbf2952229d63d8ad6a97076192c6 /.config/emacs/modules/bd--dictionary.el | |
parent | c579503b13bac147e22952a5c0a42ace264e60b6 (diff) |
switch back to setopt rather than custom
Diffstat (limited to '.config/emacs/modules/bd--dictionary.el')
-rw-r--r-- | .config/emacs/modules/bd--dictionary.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.config/emacs/modules/bd--dictionary.el b/.config/emacs/modules/bd--dictionary.el index 5c161b7..f6e67fb 100644 --- a/.config/emacs/modules/bd--dictionary.el +++ b/.config/emacs/modules/bd--dictionary.el @@ -6,9 +6,9 @@ (use-package dictionary :defer t :bind (("C-c i" . dictionary-lookup-definition)) - :custom - (dictionary-server "localhost") - (dictionary-use-single-buffer t)) + :config + (setopt dictionary-server "localhost" + dictionary-use-single-buffer t)) (provide 'bd--dictionary) |