dotfiles/nyxt/config.lisp
2024-03-23 05:46:12 +01:00

25 lines
823 B
Common Lisp

(in-package #:nyxt-user)
(setf (uiop:getenv "GTK_THEME") "Dracula")
(define-configuration browser
((theme (make-instance 'theme:theme
:background-color "#22212C"
:on-background-color "#F8F8F2"
:primary-color "#9580FF"
:on-primary-color "#F9F9F1"
:secondary-color "#9986F9"
:on-secondary-color "white"
:accent-color "#FF80BF"
:on-accent-color "black"))))
(define-configuration buffer
((default-modes
(pushnew 'nyxt/mode/vi:vi-normal-mode %slot-value%))))
(define-configuration prompt-buffer
((default-modes (append '(vi-insert-mode) %slot-default%))))
;; Import Files
(nyxt::load-lisp "~/.config/nyxt/search-engines.lisp")