.dotfiles/configs/.zshrc

66 lines
1.4 KiB
Bash
Raw Normal View History

# Update Repo
source $HOME/.dotfiles/configs/zsh/update-repo.zsh
2020-11-07 14:03:30 +01:00
# p10k
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
ZSH_THEME="powerlevel10k/powerlevel10k"
plugins=(
git
2021-05-06 16:34:34 +02:00
asdf
docker
2020-11-07 14:03:30 +01:00
zsh-autosuggestions
)
eval `dircolors ~/.dircolors`
2021-07-04 15:54:39 +02:00
export FPATH=$FPATH:~/.dotfiles/completions
2020-11-07 14:03:30 +01:00
# Load oh my zsh
export ZSH=~/.oh-my-zsh
source $ZSH/oh-my-zsh.sh
## FUNCTIONS ##
2020-11-08 21:55:05 +01:00
source $HOME/.dotfiles/configs/zsh/functions.zsh
2020-11-07 14:03:30 +01:00
2020-11-07 15:58:15 +01:00
## ALIASES ##
2020-11-08 21:55:05 +01:00
source $HOME/.dotfiles/configs/zsh/aliases.sh
2020-11-07 14:03:30 +01:00
## LOADING PROGRAMS
export PATH="$PATH:$HOME/bin"
2021-04-23 15:23:37 +02:00
2021-03-18 14:10:17 +01:00
## Setup VIM
export EDITOR="nvim"
# Automatically load direnv if found
2020-11-08 21:55:05 +01:00
[[ -s $(which direnv) ]] && eval "$(direnv hook zsh)"
2020-11-07 14:03:30 +01:00
# Load DOTNet if found
2021-02-03 22:37:56 +01:00
if [ -d $HOME/.dotnet ]; then
export DOTNET_ROOT=$HOME/.dotnet;
export PATH=$PATH:$HOME/.dotnet;
fi
2021-03-18 14:10:17 +01:00
#Load pyenv if found
if [ -s "$HOME/.pyenv" ]; then
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
fi
#Load ASDF Version manager if found
2021-06-22 13:05:12 +02:00
if [ -s "$HOME/.asdf" ]; then
. $HOME/.asdf/asdf.sh
. $HOME/.asdf/completions/asdf.bash
fi
2021-05-06 16:34:34 +02:00
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
2021-06-11 13:56:40 +02:00
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
2021-06-14 18:28:53 +02:00
# tabtab source for packages
# uninstall by removing these lines
[[ -f ~/.config/tabtab/zsh/__tabtab.zsh ]] && . ~/.config/tabtab/zsh/__tabtab.zsh || true