diff options
author | Thanos Apollo <[email protected]> | 2024-04-08 17:57:30 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-04-08 17:57:30 +0300 |
commit | 44de231b725679a7053ba63a32f3a27f14e312f2 (patch) | |
tree | 7eeb21fe848e0442781caf360a0cc6a365befac5 /.config | |
parent | 64bef7196bb3ad6fb9b6cb6fd1e35ecf13cd11b9 (diff) |
nyxt:(search) Update default search engines
Diffstat (limited to '.config')
-rw-r--r-- | .config/nyxt/default-search.lisp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.config/nyxt/default-search.lisp b/.config/nyxt/default-search.lisp index 9d47fc7..356850e 100644 --- a/.config/nyxt/default-search.lisp +++ b/.config/nyxt/default-search.lisp @@ -1,10 +1,9 @@ (defvar *my-search-engines* (list - '("google" "https://google.com/search?q=~a" "https://google.com") - '("doi" "https://dx.doi.org/~a" "https://dx.doi.org/") - '("python3" "https://docs.python.org/3/search.html?q=~a" - "https://docs.python.org/3") + '("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/")) "List of search engines.") |