Files
dotfiles/.config/git/ignore
Julian Prein cb03f35f13 git:ignore: Match paths in every depth
Instead of matching certain paths relative from the root of the repo,
match them everywhere. I need this for non-git tools that read the
.gitignore file (e.g. fd and rg) to match/ignore the files when called
from a parent directory too. `./repo/.git` would otherwise not be
ignored.
2024-01-05 15:18:59 +01:00

32 lines
432 B
Plaintext

# Ignore .git directory (mostly for tools like rg and fd)
.git
# Ignore all compiled zsh-files
*.zwc
# Ignore ctags
tags
tags.lock
tags.temp
# clangd
compile_flags.txt
# Ignore vscode files
.vscode/
# Ignore all node_modules
node_modules/
# Ignore session file created by obsession-vim
Session.vim
# Ignore python bytecode cache
__pycache__/
# Ignore python virtual environment
venv/
# Ignore latex build folder
tex_build/