aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--git/gitconfig22
-rwxr-xr-xinstall.sh6
2 files changed, 26 insertions, 2 deletions
diff --git a/git/gitconfig b/git/gitconfig
new file mode 100644
index 0000000..58c34f1
--- /dev/null
+++ b/git/gitconfig
@@ -0,0 +1,22 @@
1[user]
2 email = ts@its1.de
3 name = Thomas Schmucker
4
5[core]
6 pager = delta
7
8[interactive]
9 diffFilter = delta --color-only
10
11[delta]
12 light = false
13 navigate = true
14 side-by-side = true
15 line-numbers = true
16
17[merge]
18 conflictstyle = diff3
19
20[diff]
21 colorMoved = default
22
diff --git a/install.sh b/install.sh
index cfd8da7..0959a01 100755
--- a/install.sh
+++ b/install.sh
@@ -10,11 +10,13 @@ cp -R tmux "$CONFIG"
10cp -R nvim "$CONFIG" 10cp -R nvim "$CONFIG"
11 11
12# zsh 12# zsh
13mkdir -p "$CONFIG/zsh"
14
15cp zsh/zshenv ~/.zshenv 13cp zsh/zshenv ~/.zshenv
16 14
15mkdir -p "$CONFIG/zsh"
17cp zsh/zshrc "$CONFIG/zsh/.zshrc" 16cp zsh/zshrc "$CONFIG/zsh/.zshrc"
18cp zsh/aliases "$CONFIG/zsh/aliases" 17cp zsh/aliases "$CONFIG/zsh/aliases"
19cp zsh/prompt "$CONFIG/zsh/prompt" 18cp zsh/prompt "$CONFIG/zsh/prompt"
20 19
20# git
21cp git/gitconfig ~/.gitconfig
22