feat: neovim - scheme lang

This commit is contained in:
Ryan Yin
2024-01-02 14:43:40 +08:00
parent bfb970a6d7
commit 4a76601970
5 changed files with 103 additions and 74 deletions

View File

@@ -8,7 +8,20 @@ export def nixos-switch [
nixos-rebuild switch --use-remote-sudo --flake $".#($name)" --show-trace --verbose
} else {
nixos-rebuild switch --use-remote-sudo --flake $".#($name)"
}
}
}
# ====================== Misc =============================
export def make-editable [
path: string
] {
let tmpdir = (mktemp -d)
rsync -avz --copy-links $"($path)/" $tmpdir
rsync -avz --copy-links --chmod=D2755,F744 $"($tmpdir)/" $path
}