diff options
author | bd <bdunahu@gmail.com> | 2024-01-06 00:40:21 -0700 |
---|---|---|
committer | bd <bdunahu@gmail.com> | 2024-01-06 00:40:21 -0700 |
commit | 5b514f3b33197355e55cd1478fa50dd1cc92c340 (patch) | |
tree | 9ad40fd1a84c5bd70148cd40acc8b987e3f18d72 /.config/emacs/bd-default.el | |
parent | 84e394757a183ff5c6a19389684f77f54399918b (diff) |
Added dictionary with dico, orderless for fuzzy vertico matching.
Diffstat (limited to '.config/emacs/bd-default.el')
-rw-r--r-- | .config/emacs/bd-default.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.config/emacs/bd-default.el b/.config/emacs/bd-default.el index a7335ba..e7c70d8 100644 --- a/.config/emacs/bd-default.el +++ b/.config/emacs/bd-default.el @@ -75,7 +75,6 @@ open URL at point." (setopt kill-whole-line t) - ;; recursive minibuffers (setopt enable-recursive-minibuffers t) (minibuffer-depth-indicate-mode 1) @@ -83,6 +82,11 @@ open URL at point." ;; allow one side window per side of frame (setopt window-sides-slots '(1 1 1 1)) +;; dictionary +(keymap-global-set "C-c i" 'dictionary-lookup-definition) +(setopt dictionary-server "localhost" + dictionary-use-single-buffer t) + ;; do not show async command buffers by default (add-to-list 'display-buffer-alist (cons "\\*Async Shell Command\\*.*" (cons #'display-buffer-no-window nil))) |