+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

14
nyxt/search-engines.lisp Normal file
View File

@@ -0,0 +1,14 @@
(in-package #:nyxt-user)
(defvar *my-search-engines*
(list
'("pkgs" "https://search.nixos.org/packages?channel=unstable&size=50&sort=relevance&type=packages&query=~a" "https://search.nixos.org/packages" )
'("wiki" "https://de.wikipedia.org/index.php?search=~a" "https://de.wikipedia.org" )
'("vid" "https://video.lanakk.com/search?q=~a" "https://search.lanakk.com" )
'("osm" "https://www.openstreetmap.org/search?query=~a" "https://www.openstreetmap.org" )
'("s" "https://search.lanakk.com/search?q=~a" "https://search.lanakk.com" )
))
(define-configuration buffer
((search-engines (append %slot-default%
(mapcar (lambda (engine) (apply 'make-search-engine engine))
*my-search-engines*)))))