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:
parent
6db559daa9
commit
58b8685e47
3 changed files with 28 additions and 1 deletions
|
|
@ -15,6 +15,11 @@
|
|||
envFile.text = ''
|
||||
let-env FOO = 'BAR'
|
||||
'';
|
||||
|
||||
shellAliases = {
|
||||
"lsname" = "(ls | get name)";
|
||||
"ll" = "ls -a";
|
||||
};
|
||||
};
|
||||
|
||||
test.stubs.nushell = { };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue