dotfiles/zsh/.zshrc
John Bowdre b964d6a3ff Revert "add ccat alias"
This reverts commit 99474e6792.

Accidentally committed unwanted changes.
2023-02-20 10:50:35 -06:00

32 lines
760 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 ll="ls -la"
# Import local prefs from ~/.zshlocal, if present
if [ -f $HOME/.zshlocal ]; then
source $HOME/.zshlocal
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