When compiling a document from inside vim, build files will be written to tex_build. Ignore them. See .config/vim/ftplugin/tex.vim
29 lines
372 B
Plaintext
29 lines
372 B
Plaintext
# 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/
|