Skip to content

Commit 9f5c4eb

Browse files
committed
feat(zsh): update aliases
1 parent 5a2df38 commit 9f5c4eb

3 files changed

Lines changed: 15 additions & 0 deletions

File tree

.config/zsh/aliases.zsh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ alias gp="git push"
4343
alias gl="git pull"
4444
alias gst="git status"
4545
alias gss="git status -s"
46+
alias grbi="git rebase -i"
47+
alias grbc="git rebase --continue"
48+
alias grba="git rebase --abort"
49+
50+
# kubectl
51+
alias k="kubectl"
52+
alias kctx="kubectl config use-context"
53+
alias loki="kubectl -n loki get pods"
54+
alias monito="kubectl -n monitoring get pods"
4655

4756
# works only
4857
alias front="cd $HOME/Repos/front"

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@ tmux-client*.log
44

55
# get nerd fonts repo
66
getnf
7+
8+
# lvim
9+
.config/lvim/lv-settings.lua

.zshrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,6 @@ export PATH="$HOME/.local/bin":$PATH
2121

2222
# add custom nord theme colors
2323
test -r "~/.dir_colors" && eval $(dircolors ~/.dir_colors)
24+
25+
# enable kubectl completion
26+
source <(kubectl completion zsh)

0 commit comments

Comments
 (0)