Files
dotfiles/.config/git/ignore
Julian Prein 0c4dfbf363 git:ignore: Add /.git
Ignore the .git directory globally instead of ignoring it manually in
tools like fd and ripgrep.

I feel very dumb for putting all this time into the redefinition of :Rg,
especially since I am currently **much** procrastinating writing my
bachelor thesis.
2023-06-23 17:03:29 +02:00

32 lines
437 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/