.dotfiles/configs/.zshrc

96 lines
2.1 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
2021-08-23 18:47:23 +02:00
2020-11-07 14:03:30 +01:00
ZSH_THEME="powerlevel10k/powerlevel10k"
2021-08-23 18:47:23 +02:00
ZSH_TMUX_AUTOSTART=true
2021-08-31 21:22:57 +02:00
ZSH_TMUX_AUTOCONNECT=false
2020-11-07 14:03:30 +01:00
plugins=(
git
2021-05-06 16:34:34 +02:00
asdf
docker
2021-08-23 18:47:23 +02:00
tmux
zsh-autosuggestions
2020-11-07 14:03:30 +01:00
)
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
2021-08-01 16:09:28 +02:00
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi
#If fdfind is installed force fzf to use it
2021-08-31 21:22:57 +02:00
if type fdfind > /dev/null ; then
2021-08-01 16:09:28 +02:00
# Feed the output of fd into fzf
2021-08-23 18:47:23 +02:00
# fdfind --type f | fzf
2021-08-01 16:09:28 +02:00
# Setting fd as the default source for fzf
2021-08-23 18:47:23 +02:00
export FZF_DEFAULT_COMMAND='fdfind --type f'
2021-08-01 16:09:28 +02:00
# To apply the command to CTRL-T as well
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
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
2021-08-10 21:50:49 +02:00
2021-08-23 18:47:23 +02:00
export PNPM_HOME="$HOME/.local/share/pnpm"
2021-08-10 21:50:49 +02:00
export PATH="$PNPM_HOME:$PATH"