feat: nushell

This commit is contained in:
js0ny 2025-10-26 16:14:47 +00:00
parent e2209cea57
commit 5e47b924ef
3 changed files with 15 additions and 5 deletions

View file

@ -3,7 +3,7 @@
g = "lazygit";
ni = "touch";
cls = "clear";
ii = "open";
ii = "xdg-open";
aic = "aichat -s";
aicc = "aichat -c";
nrs = "sudo nixos-rebuild switch --flake ~/.dotfiles/nixcfgs";
@ -27,5 +27,12 @@ in {
enable = true;
shellAliases = commonAliases;
};
programs.nushell = {
enable = true;
shellAliases = commonAliases;
extraConfig = ''
$env.config.show_banner = false
'';
};
programs.zed-editor.extensions = ["fish"];
}