File tree 4 files changed +21
-0
lines changed
4 files changed +21
-0
lines changed Original file line number Diff line number Diff line change 1
1
[include]
2
2
path = ~/.gitconfig.user
3
+ [commit]
4
+ template = ~/.gitmessage
3
5
[push]
4
6
default = current
5
7
[color]
Original file line number Diff line number Diff line change
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/**/*
Original file line number Diff line number Diff line change @@ -87,6 +87,7 @@ link_dotfile gitconfig
87
87
link_dotfile zshrc
88
88
link_dotfile psqlrc
89
89
link_dotfile gitmessage
90
+ link_dotfile gitignore
90
91
91
92
fancy_echo " Installing OS Specific Packages ..."
92
93
install_os_specific_packages
Original file line number Diff line number Diff line change @@ -70,3 +70,6 @@ export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || pr
70
70
# yarn
71
71
export PATH=" $HOME /.yarn/bin:$HOME /.config/yarn/global/node_modules/.bin:$PATH "
72
72
73
+ # NOTE: You may place your own configurations in ~/.zshrc.user
74
+ [[ -f ~ /.zshrc.user ]] && source ~ /.zshrc.user
75
+
You can’t perform that action at this time.
0 commit comments