diff options
-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*))))) |