Last active
October 30, 2024 05:47
-
-
Save masihtehrani/fd743ef0cd8ba3ebb9157615e6eb8696 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then | |
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" | |
fi | |
export ZSH="$HOME/.oh-my-zsh" | |
ZSH_THEME="powerlevel10k/powerlevel10k" | |
plugins=( | |
autojump | |
git | |
cp | |
fzf | |
git | |
golang | |
pip | |
sudo | |
tmux | |
thefuck | |
docker | |
docker-compose | |
zsh-syntax-highlighting | |
zsh-autosuggestions | |
archlinux | |
ansible | |
salt | |
vagrant | |
vagrant-prompt | |
zsh-navigation-tools | |
zsh-interactive-cd | |
yarn | |
virtualenv | |
tmux | |
systemd | |
symfony | |
rust | |
rsync | |
pyenv | |
pylint | |
python | |
postgres | |
pep8 | |
perl | |
pass | |
npm | |
nvm | |
node | |
nomad | |
microk8s | |
minikube | |
man | |
kubectl | |
jsontools | |
history | |
helm | |
gpg-agent | |
git-flow | |
git-auto-fetch | |
emoji-clock | |
emoji | |
dotenv | |
composer | |
battery | |
aliases | |
laravel | |
) | |
source $ZSH/oh-my-zsh.sh | |
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh | |
export GOPATH="$HOME/Develop/Golang" | |
export PATH="$GOPATH/bin:$PATH" | |
export PATH=$PATH:/usr/lib/node_modules | |
export PATH="$HOME/.local/bin:$PATH" | |
export VISUAL=vim | |
export EDITOR="$VISUAL" | |
alias python=python3 | |
#aliases | |
alias myip="ip -o route get to 8.8.8.8 | sed -n 's/.*src \([0-9.]\+\).*/\1/p'" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment