mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
37 lines
734 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|