puter/common/bash.nix
2024-03-08 22:46:46 +01:00

19 lines
304 B
Nix

{
programs = {
command-not-found.enable = false;
bash = {
blesh.enable = true;
interactiveShellInit = ''
shopt -s globstar
shopt -s nullglob
shopt -s extglob
shopt -s checkwinsize
bind 'set show-mode-in-prompt off'
'';
};
};
}