mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 09:48:42 +02:00
plugins/firenvim: init
This commit is contained in:
parent
c9a855fe68
commit
593f5215cb
3 changed files with 118 additions and 0 deletions
28
tests/test-sources/plugins/utils/firenvim.nix
Normal file
28
tests/test-sources/plugins/utils/firenvim.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue