dotfiles/.config/nushell/conf.d/98-aliases.nu

13 lines
288 B
Text
Raw Normal View History

2024-06-18 18:14:17 +02:00
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"
2024-07-14 19:35:55 +02:00
# "new shell"
alias ns = enter .
# "quit shell"
alias qs = dexit