.zshrc (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
setopt extendedglob nomatch
unsetopt autocd beep
bindkey -e
# End of lines configured by zsh-newuser-install
# The following lines were added by compinstall
zstyle :compinstall filename '/home/admin/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
autoload -U colors && colors
PS1="%{$fg[magenta]%}%c%{$reset_color%} | %n > "
alias szsh='source ./.zshrc'
alias l=" eza -lah --no-user --no-permissions"
alias ls='ls -F'
alias ll='ls -lh'
alias lz='ls --human-readable --size -S'
alias m='micro'
alias asciiquarium='asciiquarium -s -t'
alias hx='helix'
export GOPATH="/home/kate/go"
export PATH="$PATH:/home/kate/go/bin"
bindkey "^[[1;5C" forward-word
bindkey "^[[1;5D" backward-word
|