systemSetup

system setup, configuration and dotfiles
git clone https://noulin.net/git/systemSetup.git
Log | Files | Refs | README | LICENSE

commit 0c38aa5bcc51008846a171b3345d489de3fd0ffb
parent cee96eb4fc9211391ecdf5e47f4883f67b0a68b8
Author: Remy Noulin <loader2x@gmail.com>
Date:   Sun, 28 Oct 2018 08:33:17 -0400

add git off, update no gui setup, set diff-so-fancy config

debian/1-system.sh |  6 ++++++
debian/3-home.sh   | 36 ++++++++++++++++++------------------
debian/5-system.sh |  6 +++---
3 files changed, 27 insertions(+), 21 deletions(-)

Diffstat:
Mdebian/1-system.sh | 6++++++
Mdebian/3-home.sh | 36++++++++++++++++++------------------
Mdebian/5-system.sh | 6+++---
3 files changed, 27 insertions(+), 21 deletions(-)

diff --git a/debian/1-system.sh b/debian/1-system.sh @@ -72,6 +72,12 @@ cd sheepy ./install.sh spm -g install sheepyExamples +# git-off +git clone https://github.com/RemyNoulin/git-off.git +export OFF=`pwd`/git-off/c/git-off.c +cd /usr/local/bin +ln -s $OFF git-off + # etckeeper # error in debian stretch mkdir /etc/.git/hooks diff --git a/debian/3-home.sh b/debian/3-home.sh @@ -23,21 +23,21 @@ sudo gpasswd -a $USER docker # setup diff-so-fancy in gitconfig ## commented because it is in .gitconfig -# git config --global core.pager "diff-so-fancy | less --tabs=4 -RFX" -# git config --global color.ui true -# -# git config --global color.diff-highlight.oldNormal "red bold" -# git config --global color.diff-highlight.oldHighlight "red bold 52" -# git config --global color.diff-highlight.newNormal "green bold" -# git config --global color.diff-highlight.newHighlight "green bold 22" -# -# git config --global color.diff.meta "227" -# git config --global color.diff.frag "magenta bold" -# git config --global color.diff.commit "227 bold" -# git config --global color.diff.old "red bold" -# git config --global color.diff.new "green bold" -# git config --global color.diff.whitespace "red reverse" -#git config --bool --global diff-so-fancy.markEmptyLines false -#git config --bool --global diff-so-fancy.changeHunkIndicators false -#git config --bool --global diff-so-fancy.stripLeadingSymbols false -#git config --bool --global diff-so-fancy.useUnicodeRuler false + git config --global core.pager "diff-so-fancy | less --tabs=4 -RFX" + git config --global color.ui true + + git config --global color.diff-highlight.oldNormal "red bold" + git config --global color.diff-highlight.oldHighlight "red bold 52" + git config --global color.diff-highlight.newNormal "green bold" + git config --global color.diff-highlight.newHighlight "green bold 22" + + git config --global color.diff.meta "227" + git config --global color.diff.frag "magenta bold" + git config --global color.diff.commit "227 bold" + git config --global color.diff.old "red bold" + git config --global color.diff.new "green bold" + git config --global color.diff.whitespace "red reverse" +git config --bool --global diff-so-fancy.markEmptyLines false +git config --bool --global diff-so-fancy.changeHunkIndicators false +git config --bool --global diff-so-fancy.stripLeadingSymbols false +git config --bool --global diff-so-fancy.useUnicodeRuler false diff --git a/debian/5-system.sh b/debian/5-system.sh @@ -14,9 +14,9 @@ cp vimrc.local /etc/vim/vimrc.local cp ../dotfiles/webs.sh /usr/local/bin/ # git (root account) -cp ../dotfiles/.gitconfig ~/ -mkdir ~/.gittemplates -cp -R ../dotfiles/.gittemplates/* ~/.gittemplates/ +cp ../dotfiles/.gitconfig /root/ +mkdir /root/.gittemplates +cp -R ../dotfiles/.gittemplates/* /root/.gittemplates/ git config --global user.email "you@example.com" git config --global user.name "Your Name"