2023-11-04 10:01:21 +00:00
|
|
|
(define-configuration buffer
|
2023-12-18 16:55:56 +00:00
|
|
|
((default-modes (pushnew 'nyxt/mode/blocker:blocker-mode %slot-value%))
|
|
|
|
(default-modes (pushnew 'nyxt/mode/reduce-tracking:reduce-tracking-mode %slot-value%))
|
|
|
|
(default-modes (pushnew 'nyxt/mode/emacs:emacs-mode %slot-value%))))
|
|
|
|
|
|
|
|
(define-configuration status-buffer
|
|
|
|
((glyph-mode-presentation-p t)
|
|
|
|
(display-tabs-by-last-access-p t)))
|
|
|
|
|
2023-11-07 10:20:51 +00:00
|
|
|
(define-configuration context-buffer
|
|
|
|
((search-engines (list
|
2023-12-01 06:52:47 +00:00
|
|
|
(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 "MyNixOS"
|
|
|
|
:shortcut "mn"
|
|
|
|
:search-url "https://mynixos.com/search?q=~a"
|
|
|
|
:fallback-url (quri.uri:uri "https://mynixos.com/"))
|
|
|
|
(make-instance
|
|
|
|
'search-engine
|
|
|
|
:name "DuckDuckGo"
|
|
|
|
:shortcut "ddg"
|
|
|
|
:search-url "https://duckduckgo.com/?q=~a"
|
|
|
|
:fallback-url (quri.uri:uri "https://duckduckgo.com/"))))))
|
2023-12-18 16:55:56 +00:00
|
|
|
|
2023-11-12 14:13:03 +00:00
|
|
|
(define-configuration browser
|
|
|
|
((theme (make-instance
|
|
|
|
'theme:theme
|
2023-12-18 16:55:56 +00:00
|
|
|
:dark-p t
|
|
|
|
:font-family "Noto Sans"
|
|
|
|
:background-color "#1e1e2e"
|
|
|
|
:background-alt-color "#313244"
|
|
|
|
:accent-color "#cba6f7"
|
|
|
|
:primary-color "#b4befe"
|
|
|
|
:secondary-color "#cdd6f4"
|
2023-11-12 14:13:03 +00:00
|
|
|
:warning-color "#f7768e"))))
|
2023-12-18 16:55:56 +00:00
|
|
|
|
|
|
|
(setf (uiop/os:getenv "GTK_THEME") "Adwaita:dark")
|