Skip to content

Commit

Permalink
feat(git): Globally ignore .direnv/ directories
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjones2014 committed Mar 11, 2024
1 parent d64b359 commit 022f5ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion home-manager/modules/git.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ in {
package = git.override {
guiSupport = false; # gui? never heard of her.
};
ignores = [ "Session.vim" ".DS_Store" ];
ignores = [ "Session.vim" ".DS_Store" ".direnv/" ];
aliases = {
s = "status";
newbranch = "checkout -b";
Expand Down

0 comments on commit 022f5ba

Please sign in to comment.