fdignore, gitignore, cleaning dir structure

This commit is contained in:
Bartek Stalewski 2020-02-05 16:27:59 +01:00
parent 29f16c055e
commit 1beb40c96c
5 changed files with 41 additions and 34 deletions

23
conf/fdignore Normal file
View 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
View File

@ -0,0 +1,11 @@
*.pyc
*.pyo
__pycache__
*.a
*.o
*.bak
*.swp
*~
*.egg-info
.DS_Store
/vim/.netrwhist

View File

@ -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

View File

@ -20,9 +20,15 @@ ln -sf ~/.dotfiles/vim/init.vim ~/.vimrc
# cleaning # cleaning
rm -rf ~/.gitignore rm -rf ~/.gitignore
# installing # installing
ln -sf ~/.dotfiles/gitignore ~/.gitignore ln -sf ~/.dotfiles/conf/gitignore ~/.gitignore
git config --global core.excludesfile ~/.gitignore git config --global core.excludesfile ~/.gitignore
## .fdignore
# cleaning
rm -rf ~/.fdignore
# installing
ln -sf ~/.dotfiles/conf/fdignore ~/.fdignore
## tmux ## tmux
# cleaning # cleaning
rm -rf ~/.tmux.conf rm -rf ~/.tmux.conf