dotfiles/.config/nushell/conf.d/98-aliases.nu
2024-07-14 19:35:55 +02:00

12 lines
288 B
Text

def l [path: glob = "."] { ls $path | sort-by type }
def ll [path: glob = "."] { ls -la $path | sort-by type }
def la [path: glob = "."] { ls -a $path | sort-by type }
alias nv = nvim
alias nvide = & neovide "--no-fork"
# "new shell"
alias ns = enter .
# "quit shell"
alias qs = dexit