nix-community.nixvim/tests/test-sources/plugins/by-name/openscad/default.nix

38 lines
734 B
Nix
Raw Normal View History

{
2023-03-30 11:54:54 +02:00
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>";
};
2023-03-30 11:54:54 +02:00
};
};
example = {
2023-03-30 11:54:54 +02:00
plugins.openscad = {
enable = true;
settings = {
load_snippets = true;
fuzzy_finder = "fzf";
cheatsheet_window_blend = 15;
auto_open = true;
2023-03-30 11:54:54 +02:00
};
};
};
}