+doom +nyxt +bat +zellij

This commit is contained in:
m3tam3re
2024-03-23 05:46:12 +01:00
parent 57298a6bbc
commit 94423f7e3e
44 changed files with 6461 additions and 0 deletions

24
nyxt/config.lisp Normal file
View File

@@ -0,0 +1,24 @@
(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")