# Alloy Nushell aliases # # Small curated set. No plugin framework; if the list grows past ~30 lines, # reconsider whether the alias earned its place. # ------------------------------------------------------------------- # ls variants — nu's `ls` is already structured; these add flags # ------------------------------------------------------------------- alias ll = ls -la alias la = ls -a # ------------------------------------------------------------------- # Directory hops # ------------------------------------------------------------------- alias .. = cd .. alias ... = cd ../.. alias .... = cd ../../.. # ------------------------------------------------------------------- # git shortcuts (only the ones used daily; no over-abbreviation) # ------------------------------------------------------------------- alias gs = git status alias gd = git diff alias ga = git add alias gc = git commit alias gp = git push alias gl = git log --oneline -20 # ------------------------------------------------------------------- # Editor # ------------------------------------------------------------------- alias vim = hx alias vi = hx # ------------------------------------------------------------------- # System introspection # ------------------------------------------------------------------- alias du = dua interactive # dua's interactive TUI is the default alias top = btm # bottom replaces top # ------------------------------------------------------------------- # Screen recording is not in the image. wl-screenrec is the picked tool # but is not packaged for Fedora, and building it pulled a whole Rust # toolchain stage into the build for one binary. Deferred until it is # packaged; see docs/STACK.md#screen-recorder. The screenrec wrapper # that lived here comes back with it. # ------------------------------------------------------------------- # ------------------------------------------------------------------- # Alloy itself (once alloy console is built and installed) # ------------------------------------------------------------------- # alias net = alloy net # alias audio = alloy audio # — deferred; enable once alloy console v0.5 ships.