Skip to content

Commit

Permalink
Add to global .gitignores
Browse files Browse the repository at this point in the history
  • Loading branch information
aiotter committed Apr 24, 2024
1 parent ea7ccb2 commit 6a1c002
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions git.nix
Original file line number Diff line number Diff line change
Expand Up @@ -41,27 +41,24 @@
};

ignores = [
"*~"
"*.swp"
"*~"
".DS_Store"

# General development
".env"
".direnv/"
".env"

# Python
"*.egg-info/"
".ipynb_checkpoints"
".ropeproject"
".venv"
"__pycache__/"
"build/"
"develop-eggs/"
"dist/"
"wheels/"
"*.egg-info/"

# Jupyter Notebooks
".ipynb_checkpoints"

# Virturl environment
".venv"

# IntelliJ
".idea/"
Expand All @@ -80,5 +77,5 @@
};
};

home.packages = [ pkgs.gh ];
home.packages = with pkgs; [ gh ];
}

0 comments on commit 6a1c002

Please sign in to comment.