Merge pull request 'bash: ignore leading space + duplicates in history' (#280) from bash-ignore-space into main

Reviewed-on: #280
Reviewed-by: b12f <b12f@noreply.git.pub.solar>
This commit is contained in:
teutat3s 2024-12-10 11:07:55 +00:00
commit 4e1678b1d1
Signed by: pub.solar gitea
GPG key ID: F0332B04B7054873

View file

@ -8,7 +8,13 @@
${name} = { ${name} = {
programs.git.enable = true; programs.git.enable = true;
programs.starship.enable = true; programs.starship.enable = true;
programs.bash.enable = true; programs.bash = {
enable = true;
historyControl = [
"ignoredups"
"ignorespace"
];
};
programs.neovim = { programs.neovim = {
enable = true; enable = true;
vimAlias = true; vimAlias = true;