plugins/firenvim: init

This commit is contained in:
Gaetan Lepage 2024-08-04 10:36:55 +02:00
parent c9a855fe68
commit 593f5215cb
3 changed files with 118 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{
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;
};
};
};
};
};
}