27 lines
847 B
Bash
27 lines
847 B
Bash
HISTFILE=~/.histfile
|
|
HISTSIZE=2000
|
|
SAVEHIST=100000
|
|
|
|
setopt autocd
|
|
bindkey -e
|
|
zstyle :compinstall filename '~/.zshrc'
|
|
autoload -Uz compinit
|
|
compinit
|
|
# Stuff above was auto-configured
|
|
|
|
alias lll='eza -al --icons=always --time-style long-iso'
|
|
alias ll='eza -al --icons=always --time-style iso --no-user --no-permissions'
|
|
alias l='eza -l --icons=always --no-user --no-permissions --no-time --no-filesize'
|
|
|
|
alias hist='bat ~/.histfile | rg'
|
|
alias icat='kitten icat'
|
|
|
|
eval "$(starship init zsh)"
|
|
|
|
source "/home/lynxize/.config/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh"
|
|
source "/home/lynxize/.config/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh"
|
|
|
|
# man page coloring with bat, see bat's readme
|
|
export MANPAGER="sh -c 'col -bx | bat -l man -p'"
|
|
export MANROFFOPT="-c"
|
|
# export PATH=$PATH:~/.cargo/bin/:~/jextract-22/bin/
|