Edit config

This commit is contained in:
2025-03-22 22:00:35 +04:00
parent 997475c6dd
commit 602b892a54
5 changed files with 385 additions and 151 deletions

16
alias/bash_aliases Normal file
View File

@@ -0,0 +1,16 @@
alias af="cd /home/h0lik/dev/ansible"
# Start/Stop VM ansible
alias agup="sudo virsh start ansible"
alias agdown="sudo virsh shutdown ansible"
#Connect SSH ansible-gateway
alias assh="ssh ansible"
alias devsrv="ssh worksrv"
alias grep="grep --color=auto"
alias host-ssh="/home/h0lik/.bin/./ssh-host.sh"
# Git Alias bash
alias ga="git add"
alias gc="git commit -m"
alias gp="git push -u"
alias gch="git checkout"
alias gm="git merge"
alias gps="git pull"

12
alias/zsh_aliases Normal file
View File

@@ -0,0 +1,12 @@
alias vim="nvim"
alias untar="tar xvf"
alias uz="unzip"
alias yz="yazi"
alias tf="terraform"
alias ap-key="cat ~/.myconfig/id_ed25519.pub"
alias tfp="tf plan"
alias tfa="tf apply"
alias tfd="tf destroy"
alias ga="git add ."
alias gc='git commit -m'
alias gp="git push"