dotfiles/.gitignore

141 lines
1.8 KiB
Plaintext
Raw Normal View History

2018-06-27 14:19:07 +00:00
#
# Ignore these files globally in this repo.
#
2023-08-08 14:20:11 +00:00
### Old files ###
2020-08-12 15:50:01 +00:00
old/
2023-08-08 14:20:11 +00:00
### Log files ###
2018-06-27 14:19:07 +00:00
*.log
2023-08-08 14:20:11 +00:00
### Zsh ###
# Zsh compiled script + zrecompile backup
*.zwc
*.zwc.old
# Zsh completion-optimization dumpfile
*zcompdump*
# Zsh history
.zsh_history
# Zsh sessions
.zsh_sessions
# Zsh zcalc history
.zcalc_history
# A popular plugin manager's files
._zinit
.zinit_lstupd
# zdharma/zshelldoc tool's files
zsdoc/data
# robbyrussell/oh-my-zsh/plugins/per-directory-history plugin's files
# (when set-up to store the history in the local directory)
.directory_history
# MichaelAquilina/zsh-autoswitch-virtualenv plugin's files
# (for Zsh plugins using Python)
.venv
# Zunit tests' output
/tests/_output/*
!/tests/_output/.gitkeep
2018-06-28 18:53:56 +00:00
2018-07-04 21:26:39 +00:00
### Emacs ###
# -*- mode: gitignore; -*-
2018-06-27 14:19:07 +00:00
*~
2018-07-04 21:26:39 +00:00
\#*\#
/.emacs.desktop
/.emacs.desktop.lock
*.elc
auto-save-list
tramp
.\#*
history
custom.el
SessionDesktop.el
2018-07-04 21:32:32 +00:00
emacs/emacs.d/backups/
2018-07-04 21:33:12 +00:00
emacs/emacs.d/ac-comphist.dat
2018-07-04 21:26:39 +00:00
ido.last
network-security.data
/thumbs/
# Org-mode
.org-id-locations
*_archive
# flymake-mode
*_flymake.*
# eshell files
/eshell/history
/eshell/lastdir
# elpa packages
2018-07-04 21:32:32 +00:00
emacs/emacs.d/elpa
/elpa/
2018-07-04 21:26:39 +00:00
# reftex files
*.rel
# AUCTeX auto folder
/auto/
# cask packages
.cask/
dist/
# Flycheck
flycheck_*.el
# server auth directory
/server/
# projectiles files
.projectile
# directory configuration
.dir-locals.el
### Vim ###
autoload
plugged
2023-04-21 17:33:10 +00:00
/conf.d/lvim/plugin/
2018-07-04 21:26:39 +00:00
# Swap
[._]*.s[a-v][a-z]
[._]*.sw[a-p]
[._]s[a-rt-v][a-z]
[._]ss[a-gi-z]
[._]sw[a-p]
# Session
Session.vim
2023-04-21 17:25:29 +00:00
Sessionx.vim
2020-02-11 14:47:02 +00:00
vim/vim/files/info/viminfo
2018-07-04 21:26:39 +00:00
# Temporary
.netrwhist
*~
# Auto-generated tag files
tags
# Persistent undo
[._]*.un~
2023-04-21 17:25:29 +00:00
### Fonts ###
2023-08-02 17:16:10 +00:00
*.uuid
2018-07-04 21:26:39 +00:00
2023-04-21 17:25:29 +00:00
### astroid ###
2021-03-04 19:51:22 +00:00
conf.d/astroid/searches
2023-08-08 14:20:11 +00:00
### Python ###
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
2023-04-21 17:25:29 +00:00
# End of https://www.gitignore.io/api