mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
29 lines
533 B
Nix
29 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;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|