fdignore, gitignore, cleaning dir structure
This commit is contained in:
parent
29f16c055e
commit
1beb40c96c
23
conf/fdignore
Normal file
23
conf/fdignore
Normal file
@ -0,0 +1,23 @@
|
||||
*.pyc
|
||||
*.pyo
|
||||
__pycache__
|
||||
*.a
|
||||
*.o
|
||||
*.bak
|
||||
*.swp
|
||||
*~
|
||||
*.egg-info
|
||||
.CFUserTextEncoding
|
||||
.zcompdump*
|
||||
.zsh_history
|
||||
.CFUserTextEncoding
|
||||
.fdignore
|
||||
.gitignore
|
||||
.DS_Store
|
||||
.huslogin
|
||||
/vim/.netrwhist
|
||||
Music
|
||||
Movies
|
||||
Library
|
||||
Pictures
|
||||
_venv
|
11
conf/gitignore
Normal file
11
conf/gitignore
Normal file
@ -0,0 +1,11 @@
|
||||
*.pyc
|
||||
*.pyo
|
||||
__pycache__
|
||||
*.a
|
||||
*.o
|
||||
*.bak
|
||||
*.swp
|
||||
*~
|
||||
*.egg-info
|
||||
.DS_Store
|
||||
/vim/.netrwhist
|
33
gitignore
33
gitignore
@ -1,33 +0,0 @@
|
||||
# Compiled Python scripts
|
||||
*.pyc
|
||||
*.pyo
|
||||
__pycache__
|
||||
# Compiled Java classes
|
||||
*.class
|
||||
# Compiled C files
|
||||
*.a
|
||||
*.o
|
||||
# SQLite databases
|
||||
*.db
|
||||
*.sqlite
|
||||
# Temporary or runtime files
|
||||
*.old
|
||||
*.bak
|
||||
*.swp
|
||||
*.swo
|
||||
*.swn
|
||||
*.local
|
||||
*.log
|
||||
*.pid
|
||||
*.cache
|
||||
*.orig
|
||||
*~
|
||||
.sass-cache
|
||||
# Python Sphinx and setuptools files
|
||||
/doc/_build
|
||||
/build
|
||||
/dist
|
||||
*.egg-info
|
||||
# Mac OS X specific
|
||||
.DS_Store
|
||||
/vim/.netrwhist
|
@ -20,9 +20,15 @@ ln -sf ~/.dotfiles/vim/init.vim ~/.vimrc
|
||||
# cleaning
|
||||
rm -rf ~/.gitignore
|
||||
# installing
|
||||
ln -sf ~/.dotfiles/gitignore ~/.gitignore
|
||||
ln -sf ~/.dotfiles/conf/gitignore ~/.gitignore
|
||||
git config --global core.excludesfile ~/.gitignore
|
||||
|
||||
## .fdignore
|
||||
# cleaning
|
||||
rm -rf ~/.fdignore
|
||||
# installing
|
||||
ln -sf ~/.dotfiles/conf/fdignore ~/.fdignore
|
||||
|
||||
## tmux
|
||||
# cleaning
|
||||
rm -rf ~/.tmux.conf
|
||||
|
Loading…
Reference in New Issue
Block a user