diff options
author | Alexander <a.kiryukhin@vk.team> | 2024-02-06 18:47:48 +0300 |
---|---|---|
committer | Alexander <a.kiryukhin@vk.team> | 2024-02-06 18:47:48 +0300 |
commit | 17951e8c06f638543a19cbcaf95623ca211d6514 (patch) | |
tree | c94d5e207dbf201f976bd8ccd069faf1182be4b7 /zsh/zshrc | |
parent | d38c66b5e16b5f0dbb13d2a57449606d328fae77 (diff) |
Обновление zsh
Diffstat (limited to 'zsh/zshrc')
-rw-r--r-- | zsh/zshrc | 15 |
1 files changed, 10 insertions, 5 deletions
@@ -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 |