Обновление zsh

This commit is contained in:
Alexander 2024-02-06 18:47:48 +03:00
parent d38c66b5e1
commit 17951e8c06
No known key found for this signature in database
GPG key ID: D86E384919C1B9F0

View file

@ -6,7 +6,7 @@ if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]
fi
# Exports
export PATH=$HOME/.bin:/usr/local/bin:$HOME/go/bin:$PATH
export PATH=$HOME/.local/bin:/usr/local/bin:$HOME/go/bin:$PATH
export EDITOR="nvim"
source ~/.config/zsh/antigen.zsh
@ -19,12 +19,17 @@ antigen bundle zsh-users/zsh-completions
antigen apply
# Aliases
[[ ! -f `which exa` ]] || alias ls="exa"
alias ll="ls -la"
alias ls="ls -F"
alias l="ls"
alias ll="ls -AFhl"
alias cp="cp -i" # Confirm before overwriting something
alias df='df -h' # Human-readable sizes
alias free='free -m' # Show sizes in MB
alias gitu='git add . && git commit && git push'
alias k='kubectl'
[[ ! -f `which exa` ]] || alias ls="exa" && alias ll="exa -l"
# Functions
function tk() { mkdir -p $1; cd $1; }
## Options section
setopt correct # Auto correct mistakes