summaryrefslogtreecommitdiff
path: root/.config/emacs/modules/bd--dictionary.el
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-12-13 23:43:10 -0500
committerbdunahu <bdunahu@operationnull.com>2026-01-03 21:46:06 -0700
commit288ccb3984c7cb46b67d0f6bf7fb6d53c5d7a2d3 (patch)
tree47091f5aeede90e1364546e8122cd55e6d7f2971 /.config/emacs/modules/bd--dictionary.el
parentdf14036eb22ff9326c2806eb3f8cafc0d3042efa (diff)
guix: full refactor of configuration structure
Diffstat (limited to '.config/emacs/modules/bd--dictionary.el')
-rw-r--r--.config/emacs/modules/bd--dictionary.el20
1 files changed, 0 insertions, 20 deletions
diff --git a/.config/emacs/modules/bd--dictionary.el b/.config/emacs/modules/bd--dictionary.el
deleted file mode 100644
index e032837..0000000
--- a/.config/emacs/modules/bd--dictionary.el
+++ /dev/null
@@ -1,20 +0,0 @@
-;;; -*- 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