From c49c53598795d19d66e9e6ccf87b2edfef49819a Mon Sep 17 00:00:00 2001 From: Michael Scalzetti Date: Mon, 26 Sep 2022 16:08:24 -0400 Subject: [PATCH] reorganized aliases and added new aliases --- .zshrc | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.zshrc b/.zshrc index 37e9629..e0f5b32 100644 --- a/.zshrc +++ b/.zshrc @@ -23,9 +23,6 @@ ZSH_HIGHLIGHT_STYLES[path_prefix]=none autoload -U compinit; compinit autoload -Uz promptinit -tmp(){ - cd $(mktemp -d) -} setopt prompt_subst autoload -Uz vcs_info @@ -47,11 +44,22 @@ PROMPT="[%F{001}%n%F{reset}] %F{069}%1~%F{reset} > " RPROMPT=$'$(vcs_info_wrapper) %h | %T' export PATH="/usr/sbin:/home/michael/.local/bin/:$PATH" +bindkey '\e[F' end-of-line +bindkey '\e[H' beginning-of-line + +# ALIASES +alias k="kubectl" +alias d="docker" +alias dc="docker-compose" alias dl="curl -LOJ" alias outline="/home/michael/Applications/Outline-Client.AppImage 1>/dev/null 2>/dev/null &" alias la="ls -la" -bindkey '\e[F' end-of-line -bindkey '\e[H' beginning-of-line +tmp(){ + cd $(mktemp -d) +} + +# ALIASES + neofetch