Skip to content

Commit

Permalink
Tweak bash options
Browse files Browse the repository at this point in the history
  • Loading branch information
carlthome committed Oct 22, 2024
1 parent 515db4a commit 4480761
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion modules/home-manager/home/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,19 @@
awscli.enable = true;
yt-dlp.enable = true;
nushell.enable = true;
bash.enable = true;
bash = {
enable = true;
shellOptions = [
"autocd"
"cdspell"
"dirspell"
"checkhash"
"checkjobs"
"extglob"
"globstar"
"histappend"
];
};
nnn.enable = true;
starship = {
enable = true;
Expand Down

0 comments on commit 4480761

Please sign in to comment.