feat: add nushell

This commit is contained in:
Youwen Wu 2024-07-30 20:48:07 -07:00
parent cb48688691
commit b202114bb3
Signed by: youwen5
GPG key ID: 865658ED1FE61EC3

View file

@ -184,6 +184,7 @@
enable = true;
# enableZshIntegration = true;
enableFishIntegration = true;
enableNushellIntegration = true;
};
programs.gh = {
@ -278,6 +279,16 @@
];
};
programs.nushell = {
enable = true;
configFile.text = ''
$env.config = {
edit_mode: vi,
show_banner: false
}
'';
};
programs.fd.enable = true;
programs.btop = {