3ab4e3c210
* Adding Gemfile for ruby dependencies * Adding script to install LateX dependencies * Updating Readme * Adding devcontainer config for having a development environment
57 lines
1.5 KiB
Bash
Executable file
57 lines
1.5 KiB
Bash
Executable file
# shellcheck disable=2148
|
|
# shellcheck disable=2154
|
|
# shellcheck disable=1090
|
|
# shellcheck disable=2312
|
|
[[ "${TERM_PROGRAM}" == "vscode" ]] && . "$(code --locate-shell-integration-path zsh)"
|
|
source ~/powerlevel10k/powerlevel10k.zsh-theme
|
|
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
|
export ZSH=${HOME}/.oh-my-zsh
|
|
|
|
# shellcheck disable=2034
|
|
plugins=(
|
|
git
|
|
zsh-syntax-highlighting
|
|
fasd
|
|
zsh-autosuggestions
|
|
colored-man-pages
|
|
)
|
|
|
|
alias tf='terraform'
|
|
alias tfa="terraform apply"
|
|
alias tfi="terraform init"
|
|
alias tfr="terraform refresh"
|
|
alias tfip="terraform init && terraform plan"
|
|
alias tfia="terraform init && terraform apply"
|
|
alias tfp="terraform plan"
|
|
alias tfo="terraform output"
|
|
alias tfiru="terraform init --upgrade=true -reconfigure"
|
|
alias tfirup="terraform init --upgrade=true -reconfigure && terraform plan"
|
|
alias tfd="terraform destroy"
|
|
alias tfsl="terraform state list"
|
|
tfgrep() {
|
|
grep --include="*.tf" -rl "$1" .
|
|
}
|
|
tfat() {
|
|
terraform apply --target "$1"
|
|
}
|
|
|
|
# shellcheck disable=2312
|
|
eval "$(fasd --init auto)"
|
|
|
|
alias fzf="fzf --bind 'ctrl-a:select-all+accept' -m"
|
|
|
|
# shellcheck disable=1091
|
|
source "${ZSH}/oh-my-zsh.sh"
|
|
export DISABLE_AUTO_UPDATE=true
|
|
export DISABLE_UPDATE_PROMPT=true
|
|
|
|
if [ -z "$SSH_AUTH_SOCK" ]; then
|
|
# Check for a currently running instance of the agent
|
|
RUNNING_AGENT="`ps -ax | grep 'ssh-agent -s' | grep -v grep | wc -l | tr -d '[:space:]'`"
|
|
if [ "$RUNNING_AGENT" = "0" ]; then
|
|
# Launch a new instance of the agent
|
|
ssh-agent -s &> $HOME/.ssh/ssh-agent
|
|
fi
|
|
eval `cat $HOME/.ssh/ssh-agent`
|
|
fi
|