dots-of-war/zsh/.config/zsh/.zshrc

145 lines
4.1 KiB
Bash
Raw Normal View History

2021-10-08 16:58:07 +02:00
# history config
HISTSIZE=50000
SAVEHIST=50000
2024-02-08 15:21:56 +01:00
HISTFILE="$HOME/.cache/zsh/history"
2021-10-08 16:58:07 +02:00
setopt HIST_SAVE_NO_DUPS
setopt HIST_IGNORE_ALL_DUPS
#setopt INC_APPEND_HISTORY
setopt EXTENDED_HISTORY
setopt SHARE_HISTORY
2022-03-23 10:37:00 +01:00
source "$ZDOTDIR/utils.zsh"
2021-10-08 16:58:07 +02:00
2022-01-24 19:44:43 +01:00
### Added by Zinit's installer
if [[ ! -f $HOME/.local/share/zinit/zinit.git/zinit.zsh ]]; then
print -P "%F{33} %F{220}Installing %F{33}ZDHARMA-CONTINUUM%F{220} Initiative Plugin Manager (%F{33}zdharma-continuum/zinit%F{220})…%f"
command mkdir -p "$HOME/.local/share/zinit" && command chmod g-rwX "$HOME/.local/share/zinit"
command git clone https://github.com/zdharma-continuum/zinit "$HOME/.local/share/zinit/zinit.git" && \
print -P "%F{33} %F{34}Installation successful.%f%b" || \
print -P "%F{160} The clone has failed.%f%b"
2021-10-08 15:13:39 +02:00
fi
2021-10-09 11:44:22 +02:00
2022-01-24 19:44:43 +01:00
source "$HOME/.local/share/zinit/zinit.git/zinit.zsh"
2021-10-09 11:44:22 +02:00
autoload -Uz _zinit
(( ${+_comps} )) && _comps[zinit]=_zinit
2022-01-24 19:44:43 +01:00
# Load a few important annexes, without Turbo
# (this is currently required for annexes)
zinit light-mode for \
zdharma-continuum/zinit-annex-as-monitor \
zdharma-continuum/zinit-annex-bin-gem-node \
zdharma-continuum/zinit-annex-patch-dl \
zdharma-continuum/zinit-annex-rust
### End of Zinit's installer chunk
2023-03-14 12:56:49 +01:00
# some magic to run compinit stuff only once a day, which should speed up zsh startup a good bit
autoload -Uz compinit
for dump in $ZSHDOTDIR/.zcompdump(N.mh+24); do
compinit
done
compinit -C
2022-01-24 19:44:43 +01:00
2023-03-14 12:56:49 +01:00
# this would be the regular version of the above compinit code:
2021-10-09 11:44:22 +02:00
# compinit must be ran before fzf-tab, but fzf-tab must be before syntax highlighting etc
2023-03-14 12:56:49 +01:00
#autoload -Uz compinit
#compinit
2021-10-09 11:44:22 +02:00
2024-04-12 18:20:04 +02:00
zinit light "Aloxaf/fzf-tab"
2021-10-09 11:44:22 +02:00
zinit wait lucid for \
"zsh-users/zsh-history-substring-search" \
2022-01-24 19:44:43 +01:00
"zdharma-continuum/fast-syntax-highlighting" \
2021-10-09 11:44:22 +02:00
"zsh-users/zsh-autosuggestions" \
"olets/zsh-abbr" \
"sudosubin/zsh-github-cli" \
2023-01-16 22:47:52 +01:00
"wfxr/forgit" \
2021-10-09 11:44:22 +02:00
"pkulev/zsh-rustup-completion"
2021-10-08 15:13:39 +02:00
2022-03-23 10:37:00 +01:00
# clear the default keybinds, from utils.zsh
clear-keybinds
2021-10-08 16:58:07 +02:00
# load more stuff
2024-04-12 18:20:04 +02:00
source "$ZDOTDIR/fzf-tab.zsh"
2022-03-23 10:37:00 +01:00
source "$ZDOTDIR/keybinds.zsh"
2021-10-08 15:13:39 +02:00
2022-10-31 09:01:48 +01:00
unalias zi
2021-10-08 15:13:39 +02:00
2021-10-09 11:44:22 +02:00
eval "$(zoxide init zsh)"
2021-10-08 16:58:07 +02:00
# fzf keybindings
[ -f $HOME/.fzf/shell/key-bindings.zsh ] && . $HOME/.fzf/shell/key-bindings.zsh
# some more options
setopt NOBEEP
setopt INTERACTIVE_COMMENTS
# ET nvim as manpager
export MANPAGER='nvim +Man! +"set nocul" +"set noshowcmd" +"set noruler" +"set noshowmode" +"set laststatus=0"'
2021-10-08 15:13:39 +02:00
autoload -Uz colors && colors
autoload -Uz promptinit && promptinit
2021-10-08 16:58:07 +02:00
# alias
alias ls="exa --icons"
2023-03-14 13:08:54 +01:00
alias dots="git -C $HOME/dots-of-war"
2021-10-08 15:13:39 +02:00
2021-10-08 16:58:07 +02:00
# load prompt
2021-10-08 15:13:39 +02:00
source "$ZDOTDIR/prompt.zsh"
2021-10-09 11:44:22 +02:00
2022-02-01 10:19:10 +01:00
if command -v direnv >/dev/null; then
eval "$(direnv hook zsh)"
fi
2023-01-16 10:15:28 +01:00
export EDITOR=nvim
export VISUAL=nvim
2024-02-08 15:21:56 +01:00
export ANDROID_HOME="$HOME/Android/Sdk"
export ANDROID_NDK="$HOME/Android/Sdk/ndk/21.4.7075529"
2023-01-16 10:15:28 +01:00
export JAVA_HOME="/usr/lib/jvm/java-1.19.0-openjdk-amd64/"
2023-03-05 09:30:21 +01:00
if [ -d "$HOME/anaconda3" ]; then
# >>> conda initialize >>>
# !! Contents within this block are managed by 'conda init' !!
2024-02-08 15:21:56 +01:00
__conda_setup="$("$HOME/anaconda3/bin/conda" 'shell.zsh' 'hook' 2> /dev/null)"
2023-03-05 09:30:21 +01:00
if [ $? -eq 0 ]; then
eval "$__conda_setup"
2023-01-16 10:15:28 +01:00
else
2024-02-08 15:21:56 +01:00
if [ -f "$HOME/anaconda3/etc/profile.d/conda.sh" ]; then
. "$HOME/anaconda3/etc/profile.d/conda.sh"
2023-03-05 09:30:21 +01:00
else
2024-02-08 15:21:56 +01:00
export PATH="$HOME/anaconda3/bin:$PATH"
2023-03-05 09:30:21 +01:00
fi
2023-01-16 10:15:28 +01:00
fi
2023-03-05 09:30:21 +01:00
unset __conda_setup
# <<< conda initialize <<<
2023-01-16 10:15:28 +01:00
fi
2024-02-08 15:21:56 +01:00
export PATH="$HOME/.volta/bin:$PATH"
export PATH="$HOME/.local/bin:$PATH"
2024-04-09 10:16:38 +02:00
export PATH="$HOME/.bun/bin:$PATH"
2024-02-08 15:21:56 +01:00
if command -v flutter >/dev/null; then
export PATH="$HOME/.pub-cache/bin:$PATH"
fi
2023-01-16 10:15:28 +01:00
2023-01-16 10:15:28 +01:00
2023-01-16 10:15:28 +01:00
#THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!!
export SDKMAN_DIR="$HOME/.sdkman"
[[ -s "$HOME/.sdkman/bin/sdkman-init.sh" ]] && source "$HOME/.sdkman/bin/sdkman-init.sh"
2024-02-08 15:21:56 +01:00
if [ -f '~/Downloads/google-cloud-sdk/path.zsh.inc' ]; then . '~/Downloads/google-cloud-sdk/path.zsh.inc'; fi
if [ -f '~/Downloads/google-cloud-sdk/completion.zsh.inc' ]; then . '~/Downloads/google-cloud-sdk/completion.zsh.inc'; fi
2024-02-23 09:28:56 +01:00
[[ -f '/Applications/Tailscale.app/Contents/MacOS/Tailscale' ]] && alias tailscale="/Applications/Tailscale.app/Contents/MacOS/Tailscale"
command -v jless >/dev/null && alias yless="jless --yaml"