From 9f3dbabda9f12580b08ebb2c8e060f4936befcb3 Mon Sep 17 00:00:00 2001 From: Jeremy Kaplan Date: Sat, 5 Sep 2015 00:05:43 -0400 Subject: [PATCH] Add git and hg configs --- git/config | 9 +++++++++ hg/.hgrc | 11 +++++++++++ install.conf.yaml | 2 ++ 3 files changed, 22 insertions(+) create mode 100644 git/config create mode 100644 hg/.hgrc diff --git a/git/config b/git/config new file mode 100644 index 0000000..af2e623 --- /dev/null +++ b/git/config @@ -0,0 +1,9 @@ +[user] + name = Jeremy Kaplan + email = jeremydkaplan@gmail.com +[color] + ui = true +[push] + default = simple +[alias] + lg = log --oneline --graph --decorate diff --git a/hg/.hgrc b/hg/.hgrc new file mode 100644 index 0000000..729ec5c --- /dev/null +++ b/hg/.hgrc @@ -0,0 +1,11 @@ +[ui] +username = Jeremy Kaplan +[extensions] +color = +hgext.bookmarks = +shelve = +record = +[trusted] +users = hartz +[bookmarks] +track.current = True diff --git a/install.conf.yaml b/install.conf.yaml index 748f165..4b07610 100644 --- a/install.conf.yaml +++ b/install.conf.yaml @@ -6,3 +6,5 @@ ~/.config/i3status: i3status/ ~/.config/zsh: zsh/ ~/.zshrc: zsh/.zshrc + ~/.hgrc: hg/.hgrc + ~/.config/git/config: git/config