Fixed build issues by including guard rails; Merged configs

This commit is contained in:
2026-04-05 11:41:53 +02:00
parent 3e1965f0e8
commit 45f853b376
25 changed files with 1034 additions and 133 deletions

View File

@@ -1,4 +1,5 @@
{ pkgs, ... }: {
{ pkgs, ... }:
{
# OpenSCAD: 3D modeling language support with syntax highlighting,
# cheatsheet, snippets, offline manual and fuzzy help
programs.nixvim = {
@@ -8,13 +9,12 @@
settings = {
fuzzy_finder = "fzf";
auto_open = true;
cheatsheet_toggle_key = "<leader>os";
cheatsheet_toggle_key = "<Enter>";
default_mappings = true;
exec_openscad_trig_key = "<leader>oo";
help_manual_trig_key = "<leader>om";
help_trig_key = "<leader>oh";
top_toggle = "<leader>oc";
exec_openscad_trig_key = "<A-h>";
help_manual_trig_key = "<A-m>";
help_trig_key = "<A-o>";
top_toggle = "<A-c>";
};
};
@@ -25,4 +25,5 @@
fzf
];
};
}