summaryrefslogtreecommitdiff
path: root/.config/emacs/modules/bd--dictionary.el
blob: 5c161b79e2cdf207ce9ebfd8e14b9b83e1fe2948 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
;;; -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:


(use-package dictionary
  :defer t
  :bind (("C-c i" . dictionary-lookup-definition))
  :custom
  (dictionary-server "localhost")
  (dictionary-use-single-buffer t))


(provide 'bd--dictionary)
;;; bd--dictionary.el ends here