blob: e032837a543afe8c03edaefad005b8cab31222c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
;;; -*- 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
|