nixos/home/nyxt/config.lisp
Evie Litherland-Smith 00fec45a37 nyxt search engine config
Remove atlas search so duckduckgo is now the default

Disable pre-fetching suggestions as I'm pretty sure that was the cause
of it regularly freezing
2023-11-07 10:20:51 +00:00

24 lines
1,001 B
Common Lisp

(defmethod customize-instance ((browser browser) &key)
(setf (slot-value browser 'restore-session-on-startup-p) nil))
(setf (uiop:getenv "GTK_THEME") "Adwaita:dark")
(setf (uiop/os:getenv "WEBKIT_DISABLE_COMPOSITING_MODE") "1")
(define-configuration buffer
((default-modes (pushnew 'nyxt/mode/emacs:emacs-mode %slot-value%))))
(define-configuration web-buffer
((default-modes (pushnew 'nyxt/mode/blocker:blocker-mode %slot-value%))))
(define-configuration context-buffer
((search-engines (list
(make-instance 'search-engine
:name "Wikipedia"
:shortcut "wiki"
:search-url "https://en.wikipedia.org/w/index.php?search=~a"
:fallback-url (quri.uri:uri "https://en.wikipedia.org/"))
(make-instance 'search-engine
:name "DuckDuckGo"
:shortcut "ddg"
:search-url
"https://duckduckgo.com/?q=~a"
:fallback-url
(quri.uri:uri "https://duckduckgo.com/"))))))
(load "~/.config/nyxt/theme.lisp")