2023-01-07 21:57:26 +01:00
|
|
|
|
### ENVVARS
|
2023-02-17 19:46:58 +01:00
|
|
|
|
export PATH=/usr/local/sbin:/usr/sbin/:/usr/local/bin:/usr/bin:~/.local/bin:~/.cargo/bin
|
2023-01-07 21:57:26 +01:00
|
|
|
|
export EDITOR=vim
|
2023-02-17 19:53:44 +01:00
|
|
|
|
export editor=vim
|
2023-08-27 04:02:23 +02:00
|
|
|
|
export XDG_CONFIG_HOME=~/.config
|
2023-01-07 21:57:26 +01:00
|
|
|
|
|
2023-07-04 21:33:21 +02:00
|
|
|
|
# configure `time` format
|
|
|
|
|
TIMEFMT=$'\nreal\t%E\nuser\t%U\nsys\t%S\ncpu\t%P'
|
|
|
|
|
|
2023-01-16 21:53:31 +01:00
|
|
|
|
### Aliases
|
2023-01-07 21:57:26 +01:00
|
|
|
|
alias l="ls --color -lah"
|
|
|
|
|
alias ll="ls --color -lh"
|
|
|
|
|
alias la="ls --color -ah"
|
|
|
|
|
alias ls="ls --color -h"
|
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 22:40:09 +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-16 21:53:31 +01:00
|
|
|
|
alias psgrep="ps axu | grep"
|
|
|
|
|
alias isotime='date +"%Y-%m-%dT%H:%M:%S%z"'
|
2023-06-12 13:51:16 +02:00
|
|
|
|
alias gg=lazygit
|
|
|
|
|
alias reload="source ~/.zshrc"
|
2023-06-09 14:05:42 +02:00
|
|
|
|
alias gls=/bin/ls
|
2023-02-07 14:00:00 +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" }
|
2023-06-11 00:55:35 +02:00
|
|
|
|
function smallfiles () { exec 2>/dev/null; du -ah "$@" | grep -P "^\d+(B|K)\s" }
|
2023-08-30 13:29:50 +02:00
|
|
|
|
function newpass() {
|
|
|
|
|
LC_ALL=C tr -dc '[:alnum:]' < /dev/urandom | head -c${1:-$0}
|
|
|
|
|
}
|
2023-01-07 21:57:26 +01:00
|
|
|
|
|
|
|
|
|
### ZSH HOME
|
|
|
|
|
export ZSH=$HOME/.zsh-server
|
|
|
|
|
|
2023-07-04 21:33:21 +02:00
|
|
|
|
### ---- zsh options -------------------------------------
|
|
|
|
|
setopt autocd
|
|
|
|
|
setopt HIST_FIND_NO_DUPS
|
|
|
|
|
setopt HIST_IGNORE_ALL_DUPS
|
2023-02-23 09:00:09 +01:00
|
|
|
|
setopt appendhistory
|
|
|
|
|
setopt INC_APPEND_HISTORY
|
|
|
|
|
setopt SHARE_HISTORY
|
2023-07-04 21:33:21 +02:00
|
|
|
|
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
|
|
|
|
|
#setopt share_history # share command history data
|
|
|
|
|
|
|
|
|
|
# force zsh to show the complete history
|
|
|
|
|
alias history="history 0"
|
2023-01-07 21:57:26 +01:00
|
|
|
|
|
|
|
|
|
### --- Inputs Config ------------------------------------
|
2023-01-23 00:21:49 +01:00
|
|
|
|
# vim keys, then override stuff.
|
|
|
|
|
bindkey -v
|
2023-01-07 21:57:26 +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 -----------------------------------
|
2023-01-07 22:19:25 +01:00
|
|
|
|
PS1='%B%F{red}%n@%m%k %B%F{cyan}%(4~|...|)%3~%F{white} %# %b%f%k'
|
2023-01-24 21:32:58 +01:00
|
|
|
|
|
|
|
|
|
### ---- ZSH MODULES -----------------------------------
|
2023-07-04 21:33:21 +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
|
2023-01-24 21:32:58 +01:00
|
|
|
|
|
|
|
|
|
### ---- PLUGINS -----------------------------------
|
2023-01-07 21:57:26 +01:00
|
|
|
|
source $ZSH/plugins/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh
|
|
|
|
|
source $ZSH/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
|
2023-01-24 21:32:58 +01:00
|
|
|
|
source ~/.local/share/fzf/key-bindings.zsh
|
|
|
|
|
source ~/.local/share/fzf/completion.zsh
|
2023-01-07 21:57:26 +01:00
|
|
|
|
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-24 21:32:58 +01:00
|
|
|
|
source ~/.local/share/nnn/quitcd/quitcd.bash_zsh
|
2023-02-17 19:53:44 +01:00
|
|
|
|
|
|
|
|
|
### --- local Config ------------------------------------
|
|
|
|
|
source ~/.local.zsh
|
2023-06-12 13:51:16 +02:00
|
|
|
|
|
|
|
|
|
### --- zoxide Config ------------------------------------
|
2023-06-18 15:54:06 +02:00
|
|
|
|
#if ! command -v zoxide &> /dev/null
|
|
|
|
|
#then
|
|
|
|
|
# # zoxide not installed, skipping
|
|
|
|
|
# exit
|
|
|
|
|
#else
|
|
|
|
|
# eval "$(zoxide init zsh)"
|
|
|
|
|
#fi
|