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

7 lines
221 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"