nix-community.nixvim/tests/test-sources/plugins/by-name/openscad/default.nix
2025-01-03 21:08:19 +01:00

37 lines
734 B
Nix

{
empty = {
plugins.openscad.enable = true;
};
defaults = {
plugins.openscad = {
enable = true;
settings = {
fuzzy_finder = "skim";
cheatsheet_window_blend = 15;
load_snippets = false;
auto_open = false;
default_mappings = true;
cheatsheet_toggle_key = "<Enter>";
help_trig_key = "<A-h>";
help_manual_trig_key = "<A-m>";
exec_openscad_trig_key = "<A-o>";
top_toggle = "<A-c>";
};
};
};
example = {
plugins.openscad = {
enable = true;
settings = {
load_snippets = true;
fuzzy_finder = "fzf";
cheatsheet_window_blend = 15;
auto_open = true;
};
};
};
}