nushell: add shellAliases option

This allows nushell users to define shell aliases that are inserted
into nushell's `config.nu`.
This commit is contained in:
Mika Naylor 2022-12-27 17:29:16 +01:00 committed by Robert Helgesson
parent 6db559daa9
commit 58b8685e47
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89
3 changed files with 28 additions and 1 deletions

View file

@ -4,3 +4,6 @@ let $config = {
use_ls_colors: true
}
alias ll = ls -a
alias lsname = (ls | get name)