mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 20:39:18 -08:00
14 lines
361 B
Nix
14 lines
361 B
Nix
_: {
|
|
programs.chawan = {
|
|
enable = true;
|
|
settings = {
|
|
buffer = {
|
|
images = true;
|
|
autofocus = true;
|
|
};
|
|
pager."C-k" = "() => pager.load('https://duckduckgo.com/?=')";
|
|
pager."C-l" = "() => pager.load('https://github.com/?=')";
|
|
pager."C-m" = "() => pager.load('https://news.ycombinator.com/?=')";
|
|
};
|
|
};
|
|
}
|