dotfiles

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 24eb989bdac8480cdb62d98685adae593399c49f
Author: Yuval Langer <yuval.langer@gmail.com>
Date:   Sat, 25 Jan 2014 00:12:40 +0200

Initial commit

Diffstat:
A.gitconfig | 21+++++++++++++++++++++
A.gitignore_global | 90+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 111 insertions(+), 0 deletions(-)

diff --git a/.gitconfig b/.gitconfig @@ -0,0 +1,21 @@ +[user] + name = Yuval Langer + email = yuval.langer@gmail.com + signingkey = 92DEA7D8 +[gui] + fontdiff = -family Inconsolata -size 16 -weight normal -slant roman -underline 0 -overstrike 0 +[core] + editor = vim + excludesfile = /home/yankel/.gitignore_global +[diff] + tool = diff +[difftool] + tool = meld +[push] + default = simple +[alias] + lg = log --all --graph --decorate --color +[branch] + autosetuprebase = always +[pull] + rebase = preserve diff --git a/.gitignore_global b/.gitignore_global @@ -0,0 +1,90 @@ +# Compiled source # +################### +*.com +*.class +*.dll +*.exe +*.o +*.so + +# Packages # +############ +# it's better to unpack these files and commit the raw source +# git has its own built in compression methods +*.7z +*.dmg +*.gz +*.iso +*.jar +*.rar +*.tar +*.zip + +# Logs and databases # +###################### +*.log +*.sql +*.sqlite + +# OS generated files # +###################### +.DS_Store +.DS_Store? +._* +.Spotlight-V100 +.Trashes +ehthumbs.db +Thumbs.db + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] + +# C extensions +*.so + +# Distribution / packaging +bin/ +build/ +develop-eggs/ +dist/ +eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +.tox/ +.coverage +.cache +nosetests.xml +coverage.xml + +# Translations +*.mo + +# Mr Developer +.mr.developer.cfg +.project +.pydevproject + +# Rope +.ropeproject + +# Django stuff: +*.log +*.pot + +# Sphinx documentation +docs/_build/ + +local_settings.py