Last active
May 15, 2023 14:35
-
-
Save ozydingo/ec094e73e5477717aa551b23b1166437 to your computer and use it in GitHub Desktop.
.zlogin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# enable colorized terminal output | |
export CLICOLOR=1 | |
# Parse display and control chars in the less pager | |
export LESS=-R | |
# Set default editor for terminal tasks to emacs | |
export EDITOR=emacs | |
# Moved to .zshrc | |
eval $(/opt/homebrew/bin/brew shellenv) | |
### Common dev tool aliases | |
alias d="docker" | |
alias dc="docker compose" | |
alias y="yarn" | |
alias n="node" | |
alias b="bundle" | |
alias k="kubectl" | |
alias m="minikube" | |
alias mk="minikube kubectl --" | |
# ssh to ephemeral servers without adding clutter to known_hosts | |
alias sshn="ssh -o 'UserKnownHostsFile=/dev/null'" | |
### PROMPT setup: timestamp, working dir, git branch; input on new line | |
source $HOME/script/gitprompt | |
setopt PROMPT_SUBST | |
# git_prompt='[%F{$(git_branch_color)}$(parse_git_branch)%f] %B%F{240}%~%f %# ' | |
# git_prompt='[%F{$(git_branch_color)}$(parse_git_branch)%f]' | |
zsh_colors | |
git_prompt() { | |
echo "[%F{$(git_branch_color)}$(parse_git_branch)%f]" | |
} | |
export PROMPT='[%D{%Y-%m-%d %H:%M:%S}] %F{blue}%d%f $(git_prompt)'$'\n''%F{green}$%f ' | |
export PATH="$HOME/.local/bin:$PATH" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment