dotfiles/.zshrc

115 lines
3.3 KiB
Bash
Raw Normal View History

# zmodload zsh/zprof
[ ! -d ~/.oh-my-zsh ] && sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
2023-08-18 16:23:53 +02:00
2021-09-01 20:51:14 +02:00
ZSH=$HOME/.oh-my-zsh
ZSH_CACHE_DIR="$ZSH/cache"
2023-08-18 16:23:53 +02:00
ZSH_COMPDUMP="~/.zcompdump"
ZSH_DISABLE_COMPFIX=true
2023-08-18 16:24:09 +02:00
[ -z "$IN_NIX_SHELL" ] && source $HOME/.asdf/asdf.sh
# necessary to include "/usr/share/zsh/"$(zsh --version| cut -d ' ' -f2)/functions"
# due to a breakage on fedora zsh version 5.8.1 (zsh.x86_64 5.8.1-1.fc35 @updates)
fpath=(
~/.zfunc
${ASDF_DIR}/completions
$fpath
)
eval "$(sheldon source)"
2023-08-18 17:21:59 +02:00
# disable unneeded fast-syntax-highlighting modules.
FAST_HIGHLIGHT[chroma-svn]=0
FAST_HIGHLIGHT[chroma-cvs]=0
FAST_HIGHLIGHT[chroma-aws]=0
FAST_HIGHLIGHT[chroma-yard]=0
FAST_HIGHLIGHT[chroma-cabal]=0
FAST_HIGHLIGHT[chroma-exercism]=0
test -f ~/.zsh/omz.zsh && source ~/.zsh/omz.zsh
2023-08-18 17:21:59 +02:00
2023-08-18 16:03:22 +02:00
ZSH_HIGHLIGHT_HIGHLIGHTERS=(main brackets pattern)
ZSH_AUTOSUGGEST_STRATEGY=(history completion)
2020-03-18 04:39:47 +01:00
ZSH_AUTOSUGGEST_USE_ASYNC=
ZSH_THEME_GIT_PROMPT_CACHE=" "
2023-08-18 17:20:23 +02:00
local __tosrc=(
~/.zsh/bindings.zsh
~/.zsh/fzf.zsh
~/.zsh/zvm.zsh
2023-08-18 17:20:23 +02:00
~/.dotenv
${XDG_RUNTIME_DIR}/secrets/envs
~/.zsh/aliases.zsh
~/.zsh/functions.zsh
)
for s in $__tosrc[@]; do
test -f $s && source $s
done
unset __tosrc
# You may need to manually set your language environment
2021-09-01 20:51:14 +02:00
LANG=en_GB.UTF-8
http_proxy="http://localhost:8118"
## use omz plugin.
#
#if [ -z "$SSH_AUTH_SOCK" ]; then
# eval `ssh-agent -s -t6h` > /dev/null
# if [ ! -S $HOME/.ssh/ssh_auth_sock ]; then
# ln -sf "$SSH_AUTH_SOCK" $HOME/.ssh/ssh_auth_sock
# SSH_AUTH_SOCK=$HOME/.ssh/ssh_auth_sock
# fi
#fi
2022-10-17 20:58:25 +02:00
export EDITOR='vim'
2022-10-17 21:00:17 +02:00
export VISUAL='vim'
export SYSTEMD_EDITOR='vim --clean'
2022-10-17 20:58:25 +02:00
export TERM='xterm-256color'
# export TERM='xterm-kitty'
2022-10-17 21:00:57 +02:00
export GTK_IM_MODULE=ibus
export QT_IM_MODULE=ibus
export XMODIFIERS=@im=ibus
# export ARCHFLAGS="-arch x86_64"
export kee=${kee:-$(hostname -s)}
2021-09-01 20:51:14 +02:00
SSH_KEY_PATH="$HOME/.ssh/$kee"
2023-08-18 15:57:38 +02:00
# irrelevant when using exa.
# eval $(TERM=xterm-kitty dircolors)
2022-03-26 01:51:57 +01:00
# pretend we're dockerd for rootless podman.
export DOCKER_HOST=unix://$XDG_RUNTIME_DIR/podman/podman.sock
2019-12-10 02:12:09 +01:00
eval "$(starship init zsh)"
2022-08-29 00:30:29 +02:00
# make home-manager not manage the shell configuration
HMVARSFILE="$HOME/.nix-profile/etc/profile.d/hm-session-vars.sh"
if [ -f "$HMVARSFILE" ]; then . "$HMVARSFILE"; fi
if [ -e ~/.nix-profile/etc/profile.d/nix.sh ]; then . ~/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer...and kept by me
2022-08-31 14:31:18 +02:00
eval "$(direnv hook zsh)"
2023-08-18 16:53:59 +02:00
zstyle ':completion:*:*:*:*:descriptions' format '%F{green}-- %d --%f'
zstyle ':completion:*:*:*:*:corrections' format '%F{yellow}!- %d (errors: %e) -!%f'
zstyle ':completion:*:messages' format ' %F{purple} -- %d --%f'
zstyle ':completion:*:warnings' format ' %F{red}-- no matches found --%f'
# zstyle ':completion:*' group-name ''
zstyle ':completion:*:*:-command-:*:*' group-order alias builtins functions commands
# zstyle ':completion:*' file-list all
zstyle ':completion:*' squeeze-slashes true
zstyle ':completion:*:*:cp:*' file-sort modification
# This way the completion script does not have to parse Bazel's options
# repeatedly. The 'cache-path' directory in must be created manually.
2023-08-18 16:53:59 +02:00
zstyle ':completion:*' use-cache on
zstyle ':completion:*' cache-path $ZSH_CACHE_DIR
# zprof