home/.zshrc

275 lines
9.2 KiB
Bash
Raw Permalink Normal View History

2023-09-05 22:05:12 +02:00
### ENVVARS
2024-09-13 21:05:53 +02:00
# zmodload zsh/zprof # for profiling, also uncomment last line
2024-04-09 23:36:16 +02:00
source "$HOME/.zprofile"
2024-05-24 08:22:45 +02:00
source "$HOME/.config/user-dirs.dirs"
2023-09-05 22:05:12 +02:00
export TIMEFMT=$'\nreal\t%E\nuser\t%U\nsys\t%S\ncpu\t%P'
export ZSH=$HOME/.zsh
export CLIPBOARD_NOGUI=0 # wayland only allows GUI apps to use the clipboard.
2023-10-28 23:27:11 +02:00
# cb would have to open every 2 seconds and steal
# focus. This sucks, so I will have to disable GUI
# integration (yes that means ctrl+v) for now.
#
2023-12-01 22:08:35 +01:00
# For wayland, set this to `1`
2023-10-28 23:27:11 +02:00
# see https://github.com/Slackadays/Clipboard/issues/171
2023-12-02 18:08:22 +01:00
export DATEFMT='+%a %Y-%m-%d %X'
2024-06-25 22:48:48 +02:00
export EDITOR=nvim
export VISUAL=nvim
2023-10-28 23:27:11 +02:00
2023-09-05 22:05:12 +02:00
### Aliases
2023-12-02 18:08:22 +01:00
alias l="lsd -lah --date \"$DATEFMT\""
alias ll="lsd -lh --date \"$DATEFMT\""
alias la="lsd -a --date \"$DATEFMT\""
alias ls="lsd --date \"$DATEFMT\""
2023-09-05 22:05:12 +02:00
alias grep="grep --color"
alias egrep="grep -E"
alias lgrep="find | grep"
2024-04-22 17:02:18 +02:00
alias lagrep="find -exec realpath {} \; | grep"
alias llgrep="find -type d -exec lsd -lah {} \;| grep"
2023-09-05 22:05:12 +02:00
alias psgrep="ps axu | grep"
alias plasmarestart="killall plasmashell; kstart5 plasmashell"
alias isotime='date +"%Y-%m-%dT%H:%M:%S%z"'
alias isodate='date +%Y-%m-%dT%H:%M:%S%z'
alias datefmt='date $DATEFMT'
2023-09-05 22:05:12 +02:00
alias gg=lazygit
alias reload="source ~/.zshrc"
alias gls=/bin/ls
2024-01-17 17:24:07 +01:00
alias bat=batcat
2023-10-28 23:27:11 +02:00
alias accon="HOST=$(hostname) conda activate"
2023-11-08 20:42:51 +01:00
alias gotemp="cd $(mktemp -d)"
2024-01-19 13:49:20 +01:00
alias open=xdg-open
2024-04-12 11:03:22 +02:00
alias ipb="ip -brief"
2024-05-30 19:08:01 +02:00
alias psa="ps -eadf"
alias fsize="stat --printf='%s'"
2024-06-25 22:48:48 +02:00
alias rg="rg --no-ignore"
2024-07-04 19:55:33 +02:00
alias home="cd $HOME"
2024-09-13 20:59:39 +02:00
alias ff=firefox
alias fd=fdfind
2023-09-06 14:29:27 +02:00
2023-09-05 22:05:12 +02:00
### Functions
function largefiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(G|T|P|E)\s" }
function midfiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(M|G|T|P|E)\s" }
function smallfiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(B|K)\s" }
2024-03-04 10:16:16 +01:00
function cachekeys () { exec 2>/dev/null;
2024-03-07 14:17:53 +01:00
ssh-agent-start # see ~/.zprofile
ssh-add
2023-09-05 22:05:12 +02:00
}
function newpass() {
2024-02-08 23:43:01 +01:00
LC_ALL=C tr -dc '[:alnum:]' < /dev/urandom | head -c${1:-40}
2023-09-05 22:05:12 +02:00
}
2023-10-28 23:27:11 +02:00
function condac() {
conda activate $@
export HOST=$(hostname)
}
2024-07-15 11:26:00 +02:00
# calculate on shell with `c 1+1`
function c() { printf "%s\n" "$@" | bc -l; }
2024-07-26 17:52:01 +02:00
# Call Python and execute multiple statements from args
function py() {
python <<< "
from math import *
def evaluate_and_print(code):
for expr in code.split(';'):
expr = expr.strip()
if '=' in expr:
exec(expr)
else:
result = eval(expr)
print(f\"{expr} => {result}\")
if __name__ == \"__main__\":
expr = '$*'
evaluate_and_print(expr)
"
}
function countlines() {
find . -type f -name "$1" -exec wc -l {} \; | awk '{print $0} {total += $1} END {print "Total lines:", total}'
}
2024-09-05 10:50:10 +02:00
function git-verify-commit () {
git verify-commit $1
ret=$?
if [ $ret -ne 0 ]; then
echo "Commit is not signed."
else
echo "OK"
fi
return $ret
}
2023-09-05 22:05:12 +02:00
### ---- zsh options -------------------------------------
setopt autocd
setopt HIST_FIND_NO_DUPS
2023-12-02 17:31:36 +01:00
setopt HIST_IGNORE_SPACE
2023-09-05 22:05:12 +02:00
setopt HIST_IGNORE_ALL_DUPS
setopt appendhistory
setopt INC_APPEND_HISTORY
setopt SHARE_HISTORY
setopt interactivecomments # allow comments in interactive mode
setopt magicequalsubst # enable filename expansion for arguments of the form anything=expression
setopt nonomatch # hide error message if there is no match for the pattern
setopt notify # report the status of background jobs immediately
setopt numericglobsort # sort filenames numerically when it makes sense
setopt promptsubst # enable command substitution in prompt
WORDCHARS=${WORDCHARS//\/} # Don't consider certain characters part of the word
PROMPT_EOL_MARK=""
# History configurations
HISTFILE=~/.zsh_history
HISTSIZE=10000
SAVEHIST=200000
setopt hist_expire_dups_first # delete duplicates first when HISTFILE size exceeds HISTSIZE
setopt hist_ignore_dups # ignore duplicated commands history list
setopt hist_ignore_space # ignore commands that start with space
setopt hist_verify # show command with history expansion to user before running it
### --- Inputs Config ------------------------------------
# vim keys, then override stuff.
2024-03-04 10:16:16 +01:00
bindkey -v
2023-09-05 22:05:12 +02:00
bindkey "^[[1;5C" forward-word
bindkey "^[[1;5D" backward-word
bindkey -s "^X" 'n^M'
2023-09-07 10:51:27 +02:00
### ---- EXPAND DOTS -------------------------------------
function expand-dots() {
local MATCH
if [[ $LBUFFER =~ '(^| )\.\.\.+' ]]; then
LBUFFER=$LBUFFER:fs%\.\.\.%../..%
fi
}
function expand-dots-then-expand-or-complete() {
zle expand-dots
zle expand-or-complete
}
function expand-dots-then-accept-line() {
zle expand-dots
zle accept-line
}
zle -N expand-dots
zle -N expand-dots-then-expand-or-complete
zle -N expand-dots-then-accept-line
bindkey '^I' expand-dots-then-expand-or-complete
bindkey '^M' expand-dots-then-accept-line
2023-09-05 22:05:12 +02:00
### ---- THEMES -----------------------------------
PS1='%B%F{red}%n@%m%k %B%F{cyan}%(4~|...|)%3~%F{white} %# %b%f%k'
### ---- ZSH MODULES -----------------------------------
2023-11-29 10:58:56 +01:00
fpath+=$ZSH/zfunc
2023-09-05 22:05:12 +02:00
# enable completion features
autoload -Uz compinit
compinit -d ~/.cache/zcompdump
zstyle ':completion:*:*:*:*:*' menu select
zstyle ':completion:*' auto-description 'specify: %d'
zstyle ':completion:*' completer _expand _complete
zstyle ':completion:*' format 'Completing %d'
zstyle ':completion:*' group-name ''
zstyle ':completion:*' list-colors ''
zstyle ':completion:*' list-prompt %SAt %p: Hit TAB for more, or the character to insert%s
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}'
zstyle ':completion:*' rehash true
zstyle ':completion:*' select-prompt %SScrolling active: current selection at %p%s
zstyle ':completion:*' use-compctl false
zstyle ':completion:*' verbose true
zstyle ':completion:*:kill:*' command 'ps -u $USER -o pid,%cpu,tty,cputime,cmd'
# enable color support
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
export LS_COLORS="$LS_COLORS:ow=30;44:" # fix ls color for folders with 777 permissions
alias dir='dir --color=auto'
alias vdir='vdir --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
alias diff='diff --color=auto'
alias ip='ip --color=auto'
export LESS_TERMCAP_mb=$'\E[1;31m' # begin blink
export LESS_TERMCAP_md=$'\E[1;36m' # begin bold
export LESS_TERMCAP_me=$'\E[0m' # reset bold/blink
export LESS_TERMCAP_so=$'\E[01;33m' # begin reverse video
export LESS_TERMCAP_se=$'\E[0m' # reset reverse video
export LESS_TERMCAP_us=$'\E[1;32m' # begin underline
export LESS_TERMCAP_ue=$'\E[0m' # reset underline
# Take advantage of $LS_COLORS for completion as well
zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}"
zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#)*=0=01;31'
fi
### ---- PLUGINS -----------------------------------
source $ZSH/plugins/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh
source $ZSH/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
2024-07-15 11:26:00 +02:00
source $ZSH/plugins/zsh-autoquoter/zsh-autoquoter.zsh
ZSH_HIGHLIGHT_HIGHLIGHTERS+=(zaq)
2023-09-05 22:05:12 +02:00
source ~/.local/share/fzf/key-bindings.zsh
source ~/.local/share/fzf/completion.zsh
fpath=($ZSH/plugins/zsh-completions/src $fpath)
2024-07-15 11:26:00 +02:00
ZAQ_PREFIXES+=('git commit( [^ ]##)# -[^ -]#m')
ZAQ_PREFIXES_GREEDY+=('py #')
2024-09-13 20:59:39 +02:00
ZAQ_PREFIXES_GREEDY+=('c #')
2024-07-26 17:52:01 +02:00
ZAQ_PREFIXES_GREEDY+=('countlines #')
2024-07-15 11:26:00 +02:00
2023-09-05 22:05:12 +02:00
### --- fzf Config ------------------------------------
export FZF_CTRL_T_OPTS="--preview '(highlight -O ansi -l {} 2> /dev/null || cat {} || tree -C {}) 2> /dev/null | head -200'"
export FZF_CTRL_R_OPTS='--no-sort --exact'
2024-07-26 17:52:01 +02:00
### --- nnn Config ------------------------------------
source ~/.local/share/nnn/quitcd/quitcd.bash_zsh
export NNN_PLUG='j:jump;z:autojump;'
2023-09-05 22:05:12 +02:00
### --- kitty Config ------------------------------------
# $KITTY_TERM is a custom envar I set in the kitty conf
# this stuff does not work nicely with tmux, just make them regular aliases. Shows an error if you use them in another terminal
#if [[ "$KITTY_TERM" -eq "TRUE" ]]
#then
# alias ssh="kitty +kitten ssh"
# alias tmux="export KITTY_TERM='TRUE'; tmux"
#fi
alias kssh="kitty +kitten ssh"
alias kimg="kitty +kitten icat"
# kdiff does not work on my system for some reason
#alias kdiff="kitty +kitten diff"
### --- zoxide Config ------------------------------------
if ! command -v zoxide &> /dev/null
then
# zoxide not installed, skipping
# do nothing
else
eval "$(zoxide init zsh)"
fi
2023-11-26 14:16:17 +01:00
2024-07-26 17:52:01 +02:00
### load unversioned zsh code
if [ -f ~/.zsh.local ]; then
source ~/.zsh.local
else
touch ~/.zsh.local
2024-04-06 17:20:35 +02:00
fi
2024-07-26 17:52:01 +02:00
### --- pyenv Config -------------------------------------
export PYENV_ROOT="$HOME/.pyenv"
[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init - zsh)"
. "$HOME/.cargo/env"
zstyle ':completion:*' menu select
fpath+=~/.zfunc
2024-09-13 20:59:39 +02:00
2024-09-13 21:05:53 +02:00
export NVM_DIR="$HOME/.config/nvm"
# diese Scheiße läd so ewig, wer auch immer dachte dass das so eine gute idee
# ist gehört gefeuert. Das muss jeden Tag viele leute minuten kosten.
2024-09-13 20:59:39 +02:00
# [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
# [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
2024-09-13 21:05:53 +02:00
# zprof