Add all of my custom search engines to nyxt

This commit is contained in:
Evie Litherland-Smith 2024-02-09 07:43:46 +00:00
parent 1d322d3940
commit e442f22066

View file

@ -37,21 +37,26 @@
:name "email"
:fill "evie@xenia.me.uk")))))
;; (defvar *my-search-engines*
;; (list
;; '("google" "https://google.com/search?q=~a" "https://google.com")
;; '("python3" "https://docs.python.org/3/search.html?q=~a"
;; "https://docs.python.org/3")
;; '("doi" "https://dx.doi.org/~a" "https://dx.doi.org/"))
;; "List of search engines.")
(defvar *my-search-engines*
(list
'("rust" "https://doc.rust-lang.org/std/index.html?search=~a" "https://doc.rust-lang.org/std/index.html")
'("crates" "https://crates.io/search?q=~a" "https://crates.io/")
'("python" "https://docs.python.org/3/search.html?q=~a" "https://docs.python.org/3")
'("pypi" "https://pypi.org/search/?q=~a" "https://pypi.org/")
'("mynix" "https://mynixos.com/search?q=~a" "https://mynixos.com/")
'("nixwiki" "https://nixos.wiki/index.php?search=~a&go=Go" "https://nixos.wiki/")
'("archwiki" "https://wiki.archlinux.org/index.php?search=~a" "https://wiki.archlinux.org/")
'("github" "https://github.com/search?utf8=✓&q=~a&type=repositories" "https://github.com/")
'("doi" "https://dx.doi.org/~a" "https://dx.doi.org/")
'("wiki" "https://en.wikipedia.org/w/index.php?search=~a" "https://en.wikipedia.org/")
'("ddg" "https://duckduckgo.com/?q=~a" "https://duckduckgo.com/"))
"List of search engines.")
;; (define-configuration context-buffer
;; "Go through the search engines above and make-search-engine out of them."
;; ((search-engines
;; (append
;; (mapcar (lambda (engine) (apply 'make-search-engine engine))
;; *my-search-engines*)
;; %slot-default%))))
(define-configuration context-buffer
"Go through the search engines above and make-search-engine out of them."
((search-engines
(mapcar (lambda (engine) (apply 'make-search-engine engine))
*my-search-engines*))))
(define-configuration browser
((restore-session-on-startup-p nil)))