Skip to content

Commit

Permalink
feat(zsh): update aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
brieucdlf committed Feb 13, 2023
1 parent 5a2df38 commit 9f5c4eb
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .config/zsh/aliases.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,15 @@ alias gp="git push"
alias gl="git pull"
alias gst="git status"
alias gss="git status -s"
alias grbi="git rebase -i"
alias grbc="git rebase --continue"
alias grba="git rebase --abort"

# kubectl
alias k="kubectl"
alias kctx="kubectl config use-context"
alias loki="kubectl -n loki get pods"
alias monito="kubectl -n monitoring get pods"

# works only
alias front="cd $HOME/Repos/front"
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@ tmux-client*.log

# get nerd fonts repo
getnf

# lvim
.config/lvim/lv-settings.lua
3 changes: 3 additions & 0 deletions .zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ export PATH="$HOME/.local/bin":$PATH

# add custom nord theme colors
test -r "~/.dir_colors" && eval $(dircolors ~/.dir_colors)

# enable kubectl completion
source <(kubectl completion zsh)

0 comments on commit 9f5c4eb

Please sign in to comment.