-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/fedora
- Loading branch information
Showing
5 changed files
with
37 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,22 @@ | ||
[branch] | ||
sort = -committerdate | ||
[color] | ||
ui = auto | ||
[user] | ||
name = granddaifuku | ||
email = daifukuformac@gmail.com | ||
[pull] | ||
ff = only | ||
[diff] | ||
algorithm = histogram | ||
colorMoved = default | ||
[http] | ||
postBuffer = 2M | ||
[init] | ||
defaultBranch = main | ||
[log] | ||
date = iso | ||
[pull] | ||
ff = only | ||
[push] | ||
autoSetupRemote = true | ||
[rebase] | ||
autostash = true | ||
[user] | ||
name = granddaifuku | ||
email = daifukuformac@gmail.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 17 additions & 2 deletions
19
private_dot_config/zsh/abbreviations → private_dot_config/zsh/abbreviations.tmpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,45 @@ | ||
abbr emc="emacsclient -c -a ''" | ||
abbr kemc="emacsclient -e '(kill-emacs)'" | ||
|
||
abbr kbct="kubectl" | ||
abbr kbcta="kubectl apply -f" | ||
abbr kbctd="kubectl delete -f" | ||
abbr kbctg="kubectl get" | ||
abbr kbctl="kubectl logs" | ||
|
||
abbr g="git" | ||
abbr ga="git add" | ||
abbr gb="git branch" | ||
abbr gba="git branch -a" | ||
abbr gbd="git branch -d" | ||
abbr gbd="git branch -D" | ||
abbr gcl="git clone" | ||
abbr gcm="git commit -m" | ||
abbr gco="git checkout" | ||
abbr gcob="git checkout -b" | ||
abbr gd="git diff" | ||
abbr gf="git fetch" | ||
abbr gl="git log" | ||
abbr glg="git log --graph" | ||
abbr gpl="git pull" | ||
abbr gph="git push" | ||
abbr grs="git reset --soft" | ||
abbr gs="git status" | ||
abbr gst="git stash" | ||
abbr gstp="git stash pop" | ||
abbr gsw="git switch" | ||
abbr gswc="git switch -c" | ||
|
||
abbr dcd="docker compose down -v" | ||
abbr dcu="docker compose up -d" | ||
abbr dps="docker ps -a" | ||
abbr dr="docker rm" | ||
|
||
{{ if eq .chezmoi.os "darwin" -}} | ||
abbr brw="brew" | ||
abbr brwar="brew autoremove" | ||
abbr brwi="brew install" | ||
abbr brwl="brew list" | ||
abbr brws="brew search" | ||
abbr brwun="brew uninstall" | ||
abbr brwup="brew upgrade" | ||
abbr brwuc="brew upgrade --cask --greedy" | ||
{{ end -}} |