;;; -*- lexical-binding: t; -*- ;;; Commentary: ;;; Code: (use-package dictionary :bind (("C-c i" . dictionary-lookup-definition)) :config (setopt dictionary-server "localhost" dictionary-use-single-buffer t)) (use-package powerthesaurus :bind (("C-c t" . powerthesaurus-transient)) :config (setopt powerthesaurus-show-rating nil powerthesaurus-user-agent "Chrome/138.0.0.0")) (provide 'bd--dictionary) ;;; bd--dictionary.el ends here