Compare commits
No commits in common. "c72372296ce7a1aaf5e41cbaf94fefea9a94006b" and "383e96efec17a907b6586cbc3c2b098e4c849a89" have entirely different histories.
c72372296c
...
383e96efec
@ -45,9 +45,6 @@ git() {
|
||||
if [ "$1" = "take" ]; then
|
||||
/usr/local/bin/git clone $2
|
||||
cd $(basename $2 | sed 's/\.git$//')
|
||||
elif [ "$1" = "commit" ]; then
|
||||
shift
|
||||
/usr/local/bin/git commit -s $@
|
||||
else
|
||||
/usr/local/bin/git $@
|
||||
fi
|
||||
|
10
.gitconfig
10
.gitconfig
@ -8,16 +8,8 @@
|
||||
[core]
|
||||
editor = /usr/bin/vim
|
||||
excludesfile = ~/.gitignore
|
||||
pager = git-split-diffs --color | less -RFX
|
||||
|
||||
[pager]
|
||||
diff = delta
|
||||
log = delta
|
||||
reflog = delta
|
||||
show = delta
|
||||
|
||||
[delta]
|
||||
line-numbers = true
|
||||
side-by-side = true
|
||||
[push]
|
||||
default = simple
|
||||
|
||||
|
2
Makefile
2
Makefile
@ -36,7 +36,6 @@ pre-reqs: ## Install all required binaries.
|
||||
which btm > /dev/null || cargo install bottom; \
|
||||
which procs > /dev/null || brew install procs; \
|
||||
which dog > /dev/null || brew install dog; \
|
||||
which delta > /dev/null || brew install git-delta; \
|
||||
which switcher > /dev/null || brew install danielfoehrkn/switch/switch; \
|
||||
brew install gpg gawk coreutils; \
|
||||
git clone https://github.com/zsh-users/zsh-autosuggestions $${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions; \
|
||||
@ -74,7 +73,6 @@ upgrade: ## Upgrade all required binaries.
|
||||
which btm > /dev/null && cargo install bottom; \
|
||||
which procs > /dev/null && brew upgrade procs; \
|
||||
which dog > /dev/null && brew upgrade dog; \
|
||||
which delta > /dev/null && brew upgrade git-delta; \
|
||||
which switcher > /dev/null && brew upgrade switch; \
|
||||
cd $${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions && git pull && cd -; \
|
||||
cd $${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting && git pull && cd -; \
|
||||
|
Loading…
Reference in New Issue
Block a user