17 lines
370 B
Nix
17 lines
370 B
Nix
{...}: {
|
|
programs = {
|
|
bash.enable = true;
|
|
readline = {
|
|
enable = true;
|
|
includeSystemConfig = true;
|
|
extraConfig = ''
|
|
set completion-ignore-case On
|
|
'';
|
|
};
|
|
keychain.enableBashIntegration = true;
|
|
starship.enableBashIntegration = true;
|
|
direnv.enableBashIntegration = true;
|
|
fzf.enableBashIntegration = true;
|
|
};
|
|
}
|