configs/home/.zsh/zshrc

110 lines
3.8 KiB
Bash
Raw Normal View History

2022-12-01 13:28:20 +01:00
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
# Initialization code that may require console input (password prompts, [y/n]
# confirmations, etc.) must go above this block; everything else may go below.
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
### ENVVARS
export PATH=/usr/local/sbin:/usr/sbin/:/usr/local/bin:/usr/bin:/var/lib/flatpak/exports/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl:~/.local/bin:~/.cargo/bin
2022-12-01 13:28:20 +01:00
export EDITOR=nvim
2023-02-17 19:53:44 +01:00
export editor=nvim
2022-12-01 13:28:20 +01:00
2023-01-16 21:53:31 +01:00
### Aliases
2022-12-01 13:28:20 +01:00
alias l="lsd -lah"
alias ll="lsd -lh"
alias la="lsd -a"
alias ls="lsd"
2023-01-07 23:30:33 +01:00
alias rm='echo "If you really want to use rm, use purge.\nOtherwise, please consider using trash instead: trash"'
2023-01-07 21:57:26 +01:00
alias purge="/usr/bin/rm"
2023-03-15 17:29:22 +01:00
alias doas='doas '
2023-01-07 23:30:33 +01:00
alias sudo='nocorrect sudo '
2023-01-07 23:58:53 +01:00
alias grep="grep --color"
alias egrep="grep -E"
alias lgrep="find | grep"
2023-01-14 23:57:42 +01:00
alias psgrep="ps axu | grep"
2023-04-20 13:43:52 +02:00
alias plasmarestart="killall plasmashell; kstart5 plasmashell"
2023-01-16 21:53:31 +01:00
alias isotime='date +"%Y-%m-%dT%H:%M:%S%z"'
2023-02-17 19:46:58 +01:00
alias gg=lazygit
2023-05-22 17:11:13 +02:00
alias reload="source ~/.zshrc"
2023-06-09 14:05:42 +02:00
alias gls=/bin/ls
2022-12-01 13:28:20 +01:00
2023-02-04 17:14:57 +01:00
### Functions
2023-02-04 17:51:13 +01:00
function largefiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(G|T|P|E)\s" }
2023-06-11 00:54:58 +02:00
function midfiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(M|G|T|P|E)\s" }
function midfiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(B|K)\s" }
2023-02-04 17:14:57 +01:00
2022-12-01 13:28:20 +01:00
### ZSH HOME
export ZSH=$HOME/.zsh
### ---- history config -------------------------------------
2023-02-16 16:27:02 +01:00
export HISTFILE=~/.zsh_history
2023-02-23 09:00:09 +01:00
setopt appendhistory
setopt INC_APPEND_HISTORY
setopt SHARE_HISTORY
2022-12-01 13:28:20 +01:00
# How many commands zsh will load to memory.
2023-02-17 19:53:44 +01:00
export HISTSIZE=100000
2022-12-01 13:28:20 +01:00
# How many commands history will save on file.
2023-02-23 09:00:09 +01:00
# all of them!
export SAVEHIST=10000000
2022-12-01 13:28:20 +01:00
# History won't save duplicates.
setopt HIST_IGNORE_ALL_DUPS
# History won't show duplicates on search.
setopt HIST_FIND_NO_DUPS
### ---- zsh options -------------------------------------
setopt autocd
### --- Inputs Config ------------------------------------
# vim keys, then override stuff.
bindkey -v
2022-12-01 13:28:20 +01:00
bindkey "^[[1;5C" forward-word
bindkey "^[[1;5D" backward-word
bindkey -s "^X" 'n^M'
2023-01-24 21:32:58 +01:00
### ---- THEMES -----------------------------------
2022-12-01 13:28:20 +01:00
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
source $ZSH/themes/powerlevel10k/powerlevel10k.zsh-theme
2023-01-24 21:32:58 +01:00
### ---- ZSH MODULES -----------------------------------
autoload -Uz compinit && compinit
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}'
### ---- PLUGINS -----------------------------------
2022-12-01 13:28:20 +01:00
source $ZSH/plugins/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh
source $ZSH/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
2023-01-23 23:35:37 +01:00
source ~/.local/share/fzf/key-bindings.zsh
source ~/.local/share/fzf/completion.zsh
2022-12-01 13:28:20 +01:00
source $ZSH/plugins/wakeonlan/wakeonlan.plugin.zsh
fpath=($ZSH/plugins/zsh-completions/src $fpath)
### --- 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'
### --- nnn Config ------------------------------------
2023-01-23 23:35:37 +01:00
source ~/.local/share/nnn/quitcd/quitcd.bash_zsh
2023-06-02 22:26:59 +02:00
export NNN_PLUG='j:jump;z:autojump;'
2023-02-17 19:53:44 +01:00
2023-05-22 17:11:13 +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"
2023-02-17 19:53:44 +01:00
### --- local Config ------------------------------------
source ~/.local.zsh
2023-06-02 22:18:59 +02:00
### --- zoxide Config ------------------------------------
eval "$(zoxide init zsh)"