Skip to content

Commit

Permalink
feat(zsh): enable plugins for CLI tools (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillmorozov authored May 28, 2024
1 parent 0ffed6f commit 573a991
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions zsh/.zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -77,22 +77,25 @@ plugins=(
dnf
docker
docker-compose
fd
fzf
gh
git
git-auto-fetch
golang
helm
kubectl
python
ripgrep
terraform
ubuntu
vscode
)

source $ZSH/oh-my-zsh.sh

# User configuration

# export MANPATH="/usr/local/man:$MANPATH"
export BAT_THEME="base16"

# You may need to manually set your language environment
# export LANG=en_US.UTF-8
Expand All @@ -104,7 +107,6 @@ else
export EDITOR='nvim'
fi

export BAT_THEME="base16"
# Compilation flags
# export ARCHFLAGS="-arch x86_64"

Expand All @@ -121,5 +123,8 @@ if command -v go-task &> /dev/null; then
fi
alias li="task -g light"
alias da="task -g dark"
alias e='eza -l --total-size --time-style long-iso --group-directories-first --icons'
alias ea='e -a'
alias et='e -T'

eval "$(starship init zsh)"

0 comments on commit 573a991

Please sign in to comment.