Skip to content

Commit b13bbe6

Browse files
Add gitignore gitconfig and user config
1 parent 5069e92 commit b13bbe6

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed

gitconfig

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
[include]
22
path = ~/.gitconfig.user
3+
[commit]
4+
template = ~/.gitmessage
35
[push]
46
default = current
57
[color]

gitignore

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
*.pyc
2+
*.sw[nop]
3+
.DS_Store
4+
.bundle
5+
.byebug_history
6+
.env
7+
.git/
8+
/bower_components/
9+
/log
10+
/node_modules/
11+
/tmp
12+
/vendor
13+
db/*.sqlite3
14+
log/*.log
15+
tmp/**/*

setup

+1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ link_dotfile gitconfig
8787
link_dotfile zshrc
8888
link_dotfile psqlrc
8989
link_dotfile gitmessage
90+
link_dotfile gitignore
9091

9192
fancy_echo "Installing OS Specific Packages ..."
9293
install_os_specific_packages

zshrc

+3
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,6 @@ export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || pr
7070
# yarn
7171
export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"
7272

73+
# NOTE: You may place your own configurations in ~/.zshrc.user
74+
[[ -f ~/.zshrc.user ]] && source ~/.zshrc.user
75+

0 commit comments

Comments
 (0)