dotfiles/.zshrc

188 lines
5.4 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
# Uncomment the following line to use case-sensitive completion.
# CASE_SENSITIVE="true"
# Uncomment the following line to use hyphen-insensitive completion. Case
# sensitive completion must be off. _ and - will be interchangeable.
HYPHEN_INSENSITIVE="true"
2023-08-18 15:57:10 +02:00
zstyle ':omz:update' mode disabled
zstyle ':omz:update' frequency 3 # days
# Uncomment the following line to disable colors in ls.
2023-08-18 16:10:15 +02:00
DISABLE_LS_COLORS="true"
DISABLE_MAGIC_FUNCTIONS="false"
# Uncomment the following line to disable auto-setting terminal title.
DISABLE_AUTO_TITLE="false"
# Uncomment the following line to enable command auto-correction.
ENABLE_CORRECTION="false"
# Uncomment the following line to display red dots whilst waiting for completion.
COMPLETION_WAITING_DOTS="true"
# Uncomment the following line if you want to disable marking untracked files
# under VCS as dirty. This makes repository status check for large repositories
# much, much faster.
DISABLE_UNTRACKED_FILES_DIRTY="true"
2022-03-26 02:14:00 +01:00
MAILCHECK=0
# allow tab completion in the middle of a word
setopt COMPLETE_IN_WORD
# keep backgroud processess at full speed
setopt NOBGNICE
# Uncomment the following line if you want to change the command execution time
# stamp shown in the history command output.
# The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
2023-08-18 16:04:10 +02:00
HIST_STAMPS="yyyy-mm-dd"
HISTSIZE=10000000
SAVEHIST=10000000
setopt inc_append_history
setopt extended_history # write the history file in the ":start:elapsed;command" format
setopt share_history
setopt hist_expire_dups_first # expire duplicate entries first when trimming history
setopt hist_ignore_dups
setopt hist_ignore_all_dups
setopt hist_save_no_dups
setopt hist_ignore_space
setopt hist_reduce_blanks # remove superfluous blanks before recording entry
setopt hist_verify # don't execute immediately after expansion
# HISTCONTROL=ignoredups:erasedups
# don't expand aliases _before_ completion has finished
# like: git comm-[tab]
# setopt complete_aliases # THIS HAS ISSUES
# Would you like to use another custom folder than $ZSH/custom?
# ZSH_CUSTOM=/path/to/new-custom-folder
plugins=(
git
gitignore
golang
safe-paste
2022-10-17 20:56:53 +02:00
ssh-agent
systemd
terraform
lol
2023-08-18 16:03:42 +02:00
colored-man-pages
)
source $ZSH/oh-my-zsh.sh
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