This commit is contained in:
Shelvacu
2025-07-07 17:55:12 -07:00
committed by Shelvacu on fw
parent 0a9383ce6e
commit 7d82f5323b
3 changed files with 4 additions and 4 deletions

View File

@@ -66,7 +66,7 @@ in
neosay
nheko
pinecone
quaternion
# quaternion # build is borked
''
)
(lib.mkIf config.vacu.isGui

View File

@@ -14,7 +14,7 @@ let
let
binContents = ''
#!${lib.getExe pkgs.bash}
exec ${lib.escapeShellArgs args} "$@"'';
exec ${lib.escapeShellArgs args} "$@"'';
funcContents = ''
declare aliasName=${lib.escapeShellArg name}
declare -a replacementWords=(${lib.escapeShellArgs args})
@@ -40,7 +40,7 @@ let
completion_file="$out"/share/bash-completion/completions/${name}
mkdir -p "$(dirname -- "$completion_file")"
printf '%s() {\n%s\n}\n' "$completion_function_name" ${lib.escapeShellArg funcContents} > "$completion_file"
printf 'complete -F %s %q\n' "$completion_function_name" ${lib.escapeShellArg name} >> "$completion_file
printf 'complete -F %s %s\n' "$completion_function_name" ${lib.escapeShellArg name} >> "$completion_file"
'';
ms_text = with_sudo: ''
svl_minmax_args $# 1 3

View File

@@ -38,6 +38,6 @@
yamlls.enable = true;
};
};
plugins.lean.enable = !minimal;
plugins.lean.enable = false; #lean build is broken, previously !minimal;
plugins.lean.settings.mappings = true;
}