blob: 9ff81b2f6ceed8ca943c907dd328b9ee8e1f557f (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
(in-package #:nyxt-user)
;;;; This is a file with settings for my nx-search-engines extension.
;;;; You can find it at https://github.com/aartaka/nx-search-engines
(defvar *duckduckgo-keywords*
'(:theme :dark
:help-improve-duckduckgo nil
:homepage-privacy-tips nil
:privacy-newsletter nil
:newsletter-reminders nil
:install-reminders nil
:install-duckduckgo nil
:units-of-measure :metric
:keyboard-shortcuts t
:advertisements nil
:open-in-new-tab nil
:infinite-scroll t
:safe-search :off
:font-size :medium
:header-behavior :on-fixed
:font :jetbrains-mono
:background-color "000000"
:center-alignment t)
"My DDG settings, shared between the usual, image-search and other
types of DuckDuckGo.")
(define-configuration :context-buffer
((search-engines (list
;; engines: is a prefix for `nx-search-engines',
;; it only works if you load nx-search-engines.
(engines:google :shortcut "gmaps"
:object :maps)
(make-instance 'search-engine
:shortcut "osm"
:search-url "https://www.openstreetmap.org/search?query=~a"
:fallback-url (quri:uri "https://www.openstreetmap.org/"))
(make-instance 'search-engine
:shortcut "golang"
:search-url "https://golang.org/pkg/~a/"
:fallback-url (quri:uri "https://golang.org/pkg/")
;; A good example of a custom
;; completion function. You can do
;; crazy stuff in completion
;; function (like reading shell
;; commands or files).
:completion-function
(let ((installed-packages
(str:split nyxt::+newline+
(ignore-errors
(uiop:run-program
"go list all"
:output '(:string :stripped t))))))
(lambda (input)
(sort
(serapeum:filter (alexandria:curry #'str:containsp input)
installed-packages)
#'> :key (alexandria:curry
#'prompter::score-suggestion-string input)))))
(engines:wikipedia :shortcut "w")
(make-instance 'search-engine
:shortcut "yi"
:search-url "https://yandex.ru/images/search?text=~a"
:fallback-url (quri:uri "https://yandex.ru/images/"))
(make-instance 'search-engine
:shortcut "y"
:search-url "https://yandex.com/search/?text=~a"
:fallback-url (quri:uri "https://yandex.com/search/"))
(engines:google :shortcut "g"
:safe-search nil)
(engines:google-scholar :shortcut "gs")
(engines:google-scholar :shortcut "scholar-new"
:starting-time 2015)
(engines:startpage
:shortcut "sp"
:family-filter nil
:settings-string "806f879950cd466952c5379f2307693b30b87ef2da8e631a6b9c190cf0251f48de50be0202b48b0fa76beefe9b7427b693baeb77c4d24660dc6799469afc24785a974987168e79ce297ca202ad28")
(apply #'engines:duckduckgo-images
:shortcut "i" *duckduckgo-keywords*)
(engines:duckduckgo-html-only :shortcut "dho")
(engines:github :shortcut "git")
(engines:brave :shortcut "b")
(engines:teddit :shortcut "red")
(engines:libgen :shortcut "l")
(engines:invidious :shortcut "yt")
(engines:hacker-news :shortcut "hn")
(engines:wordnet :shortcut "wn" :show-word-frequencies t)
(apply #'engines:duckduckgo
:shortcut "d" *duckduckgo-keywords*)
(engines:searx
:shortcut "a"
:base-search-url "https://search.atlas.engineer/searxng/search?q=~a"
:fallback-url (quri:uri "https://search.atlas.engineer")
:completion-function (engines:make-duckduckgo-completion)
:auto-complete :yandex
:style :dark
:safe-search :none
:request-method :post)
(gloabl-history-p nil)))))
|