summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--emacs/init.el12
1 files changed, 8 insertions, 4 deletions
diff --git a/emacs/init.el b/emacs/init.el
index 6769252..3f052af 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -183,21 +183,25 @@
;; (completion-in-region-function 'consult-completion-in-region)
)
+
;;; Dictionary
+
;; Emacs has built in support for interfacing with dictd. With dictd and some dictionaries installed on debian, this works fine out of the box.
-;; Unfortunately, dictionaries in this format tend to be hard wrapped and there isn't a lot of coverage outside of english
+;; Unfortunately, dictionaries in this format tend to be hard wrapped and there isn't a lot of coverage outside of English.
(use-package dictionary
- :defer t
:custom
- (dictionary-search-interface nil))
+ (dictionary-search-interface 'help
+ dictionary-default-dictionary "*"))
+
;;; Offline web browsing
;; Despite the name, eww is a delight to use for text-heavy websites.
(use-package browse-url
+ :disabled t
:defer t
:custom
- (browse-url-browser-function 'noa/record-url)
+ (browse-url-browser-function 'browse-url-default-browser)
(browse-url-secondary-browser-function 'browse-url-default-browser))
(use-package shr