mirror of
https://github.com/kremalicious/dotfiles.git
synced 2024-11-22 09:47:21 +01:00
this & that
This commit is contained in:
parent
06696a943a
commit
5fccb47b55
1
brew
1
brew
@ -10,6 +10,7 @@ brew update
|
|||||||
brew upgrade
|
brew upgrade
|
||||||
|
|
||||||
# Install what we need
|
# Install what we need
|
||||||
|
brew install bash
|
||||||
brew install bash-completion
|
brew install bash-completion
|
||||||
brew install git
|
brew install git
|
||||||
brew install node
|
brew install node
|
||||||
|
22
gitconfig
22
gitconfig
@ -43,6 +43,12 @@
|
|||||||
# a.k.a. ‘delete merged’
|
# a.k.a. ‘delete merged’
|
||||||
dm = "!git branch --merged | grep -v '\\*' | xargs -n 1 git branch -d"
|
dm = "!git branch --merged | grep -v '\\*' | xargs -n 1 git branch -d"
|
||||||
|
|
||||||
|
[fetch]
|
||||||
|
prune = true
|
||||||
|
|
||||||
|
[push]
|
||||||
|
default = matching
|
||||||
|
|
||||||
[color]
|
[color]
|
||||||
diff = auto
|
diff = auto
|
||||||
status = auto
|
status = auto
|
||||||
@ -63,19 +69,17 @@
|
|||||||
changed = yellow bold
|
changed = yellow bold
|
||||||
untracked = red
|
untracked = red
|
||||||
|
|
||||||
[push]
|
# Set Kaleidoscope as diff and merge tool
|
||||||
default = matching
|
|
||||||
|
|
||||||
[difftool "Kaleidoscope"]
|
|
||||||
cmd = ksdiff --partial-changeset --relative-path \"$MERGED\" -- \"$LOCAL\" \"$REMOTE\"
|
|
||||||
[diff]
|
[diff]
|
||||||
tool = Kaleidoscope
|
tool = Kaleidoscope
|
||||||
[difftool]
|
[difftool]
|
||||||
prompt = false
|
prompt = false
|
||||||
|
[difftool "Kaleidoscope"]
|
||||||
|
cmd = ksdiff --partial-changeset --relative-path \"$MERGED\" -- \"$LOCAL\" \"$REMOTE\"
|
||||||
|
[merge]
|
||||||
|
tool = Kaleidoscope
|
||||||
|
[mergetool]
|
||||||
|
prompt = false
|
||||||
[mergetool "Kaleidoscope"]
|
[mergetool "Kaleidoscope"]
|
||||||
cmd = ksdiff --merge --output \"$MERGED\" --base \"$BASE\" -- \"$LOCAL\" --snapshot \"$REMOTE\" --snapshot
|
cmd = ksdiff --merge --output \"$MERGED\" --base \"$BASE\" -- \"$LOCAL\" --snapshot \"$REMOTE\" --snapshot
|
||||||
trustExitCode = true
|
trustExitCode = true
|
||||||
[mergetool]
|
|
||||||
prompt = false
|
|
||||||
[merge]
|
|
||||||
tool = Kaleidoscope
|
|
2
npmrc
2
npmrc
@ -3,4 +3,6 @@
|
|||||||
#registry = http://registry.npmjs.eu
|
#registry = http://registry.npmjs.eu
|
||||||
|
|
||||||
# Make npm less noisy
|
# Make npm less noisy
|
||||||
|
# If only it would work...
|
||||||
|
# https://github.com/npm/npm/issues/4186
|
||||||
loglevel = warn
|
loglevel = warn
|
Loading…
Reference in New Issue
Block a user