mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
95201931f2
This command adds the ability to specify lists of qutebrowser commands as values for key bindings, which avoids the need for concatenating commands with ` ;; `.
47 lines
1.4 KiB
Nix
47 lines
1.4 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.qutebrowser = {
|
|
enable = true;
|
|
|
|
enableDefaultBindings = false;
|
|
|
|
keyBindings = {
|
|
normal = {
|
|
"<Ctrl-v>" = "spawn mpv {url}";
|
|
",l" = ''config-cycle spellcheck.languages ["en-GB"] ["en-US"]'';
|
|
"<F1>" = mkMerge [
|
|
"config-cycle tabs.show never always"
|
|
"config-cycle statusbar.show in-mode always"
|
|
"config-cycle scrolling.bar never always"
|
|
];
|
|
};
|
|
prompt = { "<Ctrl-y>" = "prompt-yes"; };
|
|
};
|
|
};
|
|
|
|
test.stubs.qutebrowser = { };
|
|
|
|
nmt.script = let
|
|
qutebrowserConfig = if pkgs.stdenv.hostPlatform.isDarwin then
|
|
".qutebrowser/config.py"
|
|
else
|
|
".config/qutebrowser/config.py";
|
|
in ''
|
|
assertFileContent \
|
|
home-files/${qutebrowserConfig} \
|
|
${
|
|
pkgs.writeText "qutebrowser-expected-config.py" ''
|
|
config.load_autoconfig(False)
|
|
c.bindings.default = {}
|
|
config.bind(",l", "config-cycle spellcheck.languages [\"en-GB\"] [\"en-US\"]", mode="normal")
|
|
config.bind("<Ctrl-v>", "spawn mpv {url}", mode="normal")
|
|
config.bind("<F1>", "config-cycle tabs.show never always ;; config-cycle statusbar.show in-mode always ;; config-cycle scrolling.bar never always", mode="normal")
|
|
config.bind("<Ctrl-y>", "prompt-yes", mode="prompt")''
|
|
}
|
|
'';
|
|
};
|
|
}
|