mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-12 21:52:18 +00:00
32 lines
778 B
Bash
32 lines
778 B
Bash
HISTFILE=~/.histfile
|
|
HISTSIZE=1000
|
|
SAVEHIST=1000
|
|
setopt appendhistory autocd
|
|
unsetopt beep extendedglob notify
|
|
bindkey -v
|
|
zstyle :compinstall filename '$HOME/.zshrc'
|
|
autoload -Uz compinit
|
|
compinit
|
|
PATH="$HOME/.local/bin:$PATH"
|
|
|
|
# Global aliases
|
|
alias ssh="TERM=xterm ssh"
|
|
alias sshpass="ssh -o PubkeyAuthentication=no"
|
|
alias scppass="scp -o PubkeyAuthentication=no"
|
|
alias k="kubectl"
|
|
alias t="tanzu"
|
|
alias ll="ls -la"
|
|
|
|
# Import local aliases from ~/.zshalias, if present
|
|
if [ -f $HOME/.zshalias ]; then
|
|
source $HOME/.zshalias
|
|
fi
|
|
|
|
# Shell initializations
|
|
if type oh-my-posh > /dev/null; then
|
|
eval "$(oh-my-posh init zsh --config '~/.dotfiles/oh-my-posh/vpotato.minimal.omp.json')"
|
|
enable_poshtransientprompt
|
|
fi
|
|
if type mcfly > /dev/null; then
|
|
eval "$(mcfly init zsh)"
|
|
fi
|