mirror of
https://codeberg.org/JasterV/dotfiles.git
synced 2026-04-26 18:40:04 +00:00
Update zshrc
This commit is contained in:
parent
acd5786fe6
commit
c886e50cc7
1 changed files with 13 additions and 3 deletions
16
.zshrc
16
.zshrc
|
|
@ -1,6 +1,9 @@
|
||||||
export PATH=$HOME/.cargo/bin:$PATH
|
export PATH=$HOME/.cargo/bin:$PATH
|
||||||
|
export PATH=$HOME/.bun/bin:$PATH
|
||||||
|
export PATH=$HOME/.mix/escripts:$PATH
|
||||||
# Path to your oh-my-zsh installation.
|
# Path to your oh-my-zsh installation.
|
||||||
export ZSH="$HOME/.oh-my-zsh"
|
export ZSH="$HOME/.oh-my-zsh"
|
||||||
|
export CARGO_HOME=$HOME/.cargo/
|
||||||
|
|
||||||
export VAULT_ADDR=https://vault.helloprima.com:8200
|
export VAULT_ADDR=https://vault.helloprima.com:8200
|
||||||
|
|
||||||
|
|
@ -40,22 +43,29 @@ plugins=(git rust sudo docker docker-compose fzf)
|
||||||
|
|
||||||
source $ZSH/oh-my-zsh.sh
|
source $ZSH/oh-my-zsh.sh
|
||||||
|
|
||||||
|
|
||||||
if type brew &>/dev/null; then
|
if type brew &>/dev/null; then
|
||||||
FPATH=$(brew --prefix)/share/zsh-completions:$FPATH
|
FPATH=$(brew --prefix)/share/zsh-completions:$FPATH
|
||||||
FPATH="$(brew --prefix)/share/zsh/site-functions:${FPATH}"
|
FPATH="$(brew --prefix)/share/zsh/site-functions:${FPATH}"
|
||||||
|
|
||||||
autoload -Uz compinit
|
|
||||||
compinit
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
autoload -Uz compinit
|
||||||
|
compinit
|
||||||
|
|
||||||
# ALIAS
|
# ALIAS
|
||||||
alias v="nvim"
|
alias v="nvim"
|
||||||
|
alias dsa="docker stop $(docker ps -qa)"
|
||||||
|
alias dra="docker rm $(docker ps -qa)"
|
||||||
|
alias gdba="git branch | grep -v "master" | xargs git branch -D"
|
||||||
|
|
||||||
alias vault-login="vault login -method=oidc -path=okta --no-print"
|
alias vault-login="vault login -method=oidc -path=okta --no-print"
|
||||||
|
|
||||||
|
|
||||||
eval "$(/home/victor-martinez/.local/bin/mise activate zsh)"
|
eval "$(/home/victor-martinez/.local/bin/mise activate zsh)"
|
||||||
eval "$(zellij setup --generate-auto-start zsh)"
|
eval "$(zellij setup --generate-auto-start zsh)"
|
||||||
|
|
||||||
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
|
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
|
||||||
|
|
||||||
[ -f "/home/victor-martinez/.ghcup/env" ] && . "/home/victor-martinez/.ghcup/env" # ghcup-env
|
[ -f "/home/victor-martinez/.ghcup/env" ] && . "/home/victor-martinez/.ghcup/env" # ghcup-env
|
||||||
|
|
||||||
|
source <(jj util completion zsh)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue