1
0
mirror of https://github.com/bertptrs/vimconfig.git synced 2025-12-25 20:40:32 +01:00

Add git configuration.

I do like the recursion in this.
This commit is contained in:
Bert Peters
2016-05-31 10:00:51 +02:00
parent 646dea919b
commit c3c572fa27
3 changed files with 25 additions and 0 deletions

17
git/.config/git/config Normal file
View File

@@ -0,0 +1,17 @@
[core]
pager = less -x4
editor = vim
excludesfile = ~/.config/git/ignore
[user]
name = Bert Peters
email = bert.ljpeters@gmail.com
[push]
default = simple
[merge]
tool = vimdiff
[help]
autocorrect = 10

4
git/.config/git/ignore Normal file
View File

@@ -0,0 +1,4 @@
# Editor backup files
*~
.*.swp
.DS_Store

View File

@@ -58,4 +58,8 @@ then
stow -t $HOME zsh stow -t $HOME zsh
fi fi
# Install all XDG compatible packages
echo "Installing remaining packages"
stow -t $HOME pacman git
echo "Installation finished." echo "Installation finished."