Helps centralize dotfiles to a single repository

swap full param names for ln for short ones for compatability

nnuuvv 85e05125 34a4203f

Changed files
+6 -3
src
+6 -3
src/dotfiles.gleam
··· 293 293 shellout.command( 294 294 run: "ln", 295 295 with: [ 296 - "--symbolic", 297 - "--no-dereference", 298 - "--force", 296 + // symbolic 297 + "-s", 298 + // no-dereference 299 + "-n", 300 + // force 301 + "-f", 299 302 dotfiles_path, 300 303 target_path, 301 304 ],