mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-06 03:26:29 +00:00
12 lines
300 B
Plaintext
12 lines
300 B
Plaintext
|
#! /bin/bash
|
||
|
|
||
|
# Set some Git Config options
|
||
|
# Set vim as default git editor
|
||
|
git config --global core.editor "vim"
|
||
|
# Turn on colors
|
||
|
git config --global color.ui auto
|
||
|
# Set diff tool to vimdiff
|
||
|
git config --global diff.tool vimdiff
|
||
|
# Suppress launching prompt
|
||
|
git config --global difftool.prompt false
|