nix-community.nixvim/tests/test-sources/plugins/utils/firenvim.nix
2024-08-07 23:04:09 +02:00

28 lines
533 B
Nix

{
empty = {
plugins.firenvim.enable = true;
};
example = {
plugins.firenvim = {
enable = true;
settings = {
globalSettings.alt = "all";
localSettings = {
".*" = {
cmdline = "neovim";
content = "text";
priority = 0;
selector = "textarea";
takeover = "always";
};
"https?://[^/]+\\.co\\.uk/" = {
takeover = "never";
priority = 1;
};
};
};
};
};
}