Matt Reeves
4530601f15
All checks were successful
OpenTofu Automation / deploy (push) Successful in 17s
21 lines
612 B
Bash
21 lines
612 B
Bash
# Path to your Oh My Zsh installation.
|
|
export ZSH="$HOME/.oh-my-zsh"
|
|
export PATH=$PATH:$HOME/.local/bin
|
|
|
|
# Set theme
|
|
ZSH_THEME="robbyrussell"
|
|
|
|
# Plugins
|
|
plugins=(git ubuntu copypath copyfile dirhistory zsh-interactive-cd docker docker-compose opentofu zsh-history-substring-search zsh-autosuggestions zsh-syntax-highlighting you-should-use)
|
|
|
|
source $ZSH/oh-my-zsh.sh
|
|
|
|
# Set up Oh My Posh Theme
|
|
eval "$(oh-my-posh init zsh --config /home/mafyuh/.oh-my-posh/themes/sonicboom_dark.omp.json)"
|
|
|
|
# Custom aliases
|
|
alias dcd="docker compose down"
|
|
alias dcu="docker compose up -d"
|
|
|
|
# Display system information
|
|
fastfetch
|