22 lines
584 B
Plaintext
22 lines
584 B
Plaintext
## Aliases ##
|
|
alias cat = bat
|
|
alias find = fd
|
|
alias df = duf
|
|
alias du = dust -b -d 1
|
|
alias just = just --shell "nu" --shell-arg "-c"
|
|
alias ll = ls -al
|
|
def day [] { date now | date format "%a %b %d" }
|
|
|
|
## Functions ##
|
|
def sshdev [port: int = 8080] {
|
|
$"Listening on localhost:($port)"
|
|
^ssh -i ~/.ssh/dev -N -T -R $"1337:localhost:($port)" dev@jolheiser.com
|
|
}
|
|
|
|
## Other ##
|
|
let-env EDITOR = hx
|
|
let-env config = ($env.config | upsert "shell_integration" ("WEZTERM_PANE" not-in $env and "SSH_CLIENT" not-in $env))
|
|
source ~/.config/nushell/zoxide.nu
|
|
source ~/.config/nushell/ohmyposh.nu
|
|
|