diff options
author | Thanos Apollo <[email protected]> | 2024-08-21 20:33:54 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-08-21 20:33:54 +0300 |
commit | a5dc2a5450b8ea94090515c656cb884b699378ba (patch) | |
tree | 9268a428efb678596beab6dceb63dc367f1d6b89 /.config/nyxt/default-search.lisp | |
parent | 71c983d7e7cb7dd3c4b10fc4edf157dfc5f2f45e (diff) |
nyxt: Update default search engines.
Diffstat (limited to '.config/nyxt/default-search.lisp')
-rw-r--r-- | .config/nyxt/default-search.lisp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/.config/nyxt/default-search.lisp b/.config/nyxt/default-search.lisp index 356850e..001bb54 100644 --- a/.config/nyxt/default-search.lisp +++ b/.config/nyxt/default-search.lisp @@ -1,10 +1,8 @@ - -(defvar *my-search-engines* +;; Search engines +(defvar *thanos/search-engines* (list - '("g" "https://google.com/search?q=~a" "https://google.com") - '("gh" "https://github.com/search?q=~a" "https://github.com") '("aa" "https://annas-archive.org/search?q=~a" "https://annas-archive.org/") - '("duck" "https://duckduckgo.com/?q=~a" "https://duckduckgo.com/")) + '("duck" "https://html.duckduckgo.com/html/?q=~a" "https://html.duckduckgo.com/")) "List of search engines.") (define-configuration context-buffer @@ -13,4 +11,4 @@ (append %slot-default% (mapcar (lambda (engine) (apply 'make-search-engine engine)) - *my-search-engines*))))) + *thanos/search-engines*))))) |