mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-05 16:36:32 +00:00
12 lines
300 B
Bash
12 lines
300 B
Bash
#! /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
|