File tree 1 file changed +15
-2
lines changed
1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change 17
17
18
18
(defvar *my-search-engines*
19
19
(list
20
- ' (" b " " https://search.brave .com/search ?q=~a " )
21
- ' (" g " " https://www.google .com/?q=~a " )))
20
+ ' (" g " " https://www.google .com/?q=~a " )
21
+ ' (" b " " https://search.brave .com/search ?q=~a " )))
22
22
23
23
(define-configuration buffer
24
24
((search-engines (append %slot-default%
54
54
(defvar +youtube-dl-command+ " youtube-dl"
55
55
" /home/danny/.local/bin/yt-dlp" )
56
56
57
+ (define-configuration base-mode
58
+ ((keymap-scheme
59
+ (define-scheme (:name-prefix " my-base" :import %slot-default%)
60
+ scheme :vi-normal
61
+ (list " g b" (make-command switch-buffer* ()
62
+ (switch-buffer :current-is-last-p t )))))))
63
+
64
+ (define-configuration buffer
65
+ ((override-map
66
+ (let ((map (make-keymap " override-map" )))
67
+ (define-key map
68
+ " C-w" ' delete-current-buffer)))))
69
+
57
70
(define-configuration browser
58
71
((session-restore-prompt :always-restore )))
59
72
You can’t perform that action at this time.
0 commit comments