Last active
August 31, 2019 15:53
-
-
Save trejas/6778c4fb4cde48d08437b972638377a6 to your computer and use it in GitHub Desktop.
ZShell & oh-my-zsh profile
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
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
source ~/.oh-my-zsh/antigen.zsh | |
# Path to your oh-my-zsh installation. | |
export ZSH="/Users/<username>ß/.oh-my-zsh" | |
export PATH=$PATH:~/.local/bin | |
export PATH=$PATH:/usr/local/opt/python/libexxc/bin | |
export PATH=$PATH:/usr/local/bin | |
export PATH=$PATH:/Users/<username>/Library/Python/3.7/bin | |
export PATH=$PATH:/opt/local/bin | |
export PATH="${KREW_ROOT:-$HOME/.krew}/bin:$PATH" | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, | |
# to know which specific one was loaded, run: echo $RANDOM_THEME | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
ZSH_THEME="powerlevel10k/powerlevel10k" | |
POWERLEVEL9K_MODE="awesome-patched" | |
# POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(os_icon ssh dir vcs) | |
# POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status dir_writeable root_indicator) | |
# AWS_DEFAULT_PROFILE="default" | |
# Set list of themes to pick from when loading at random | |
# Setting this variable when ZSH_THEME=random will cause zsh to load | |
# a theme from this variable instead of looking in ~/.oh-my-zsh/themes/ | |
# If set to an empty array, this variable will have no effect. | |
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" ) | |
# Uncomment the following line to use case-sensitive completion. | |
# CASE_SENSITIVE="true" | |
# Uncomment the following line to use hyphen-insensitive completion. | |
# Case-sensitive completion must be off. _ and - will be interchangeable. | |
# HYPHEN_INSENSITIVE="true" | |
# Uncomment the following line to disable bi-weekly auto-update checks. | |
# DISABLE_AUTO_UPDATE="true" | |
# Uncomment the following line to automatically update without prompting. | |
# DISABLE_UPDATE_PROMPT="true" | |
# Uncomment the following line to change how often to auto-update (in days). | |
# export UPDATE_ZSH_DAYS=13 | |
# Uncomment the following line if pasting URLs and other text is messed up. | |
# DISABLE_MAGIC_FUNCTIONS=true | |
# Uncomment the following line to disable colors in ls. | |
# DISABLE_LS_COLORS="true" | |
# Uncomment the following line to disable auto-setting terminal title. | |
# DISABLE_AUTO_TITLE="true" | |
# Uncomment the following line to enable command auto-correction. | |
# ENABLE_CORRECTION="true" | |
# Uncomment the following line to display red dots whilst waiting for completion. | |
COMPLETION_WAITING_DOTS="true" | |
# Uncomment the following line if you want to disable marking untracked files | |
# under VCS as dirty. This makes repository status check for large repositories | |
# much, much faster. | |
# DISABLE_UNTRACKED_FILES_DIRTY="true" | |
# Uncomment the following line if you want to change the command execution time | |
# stamp shown in the history command output. | |
# You can set one of the optional three formats: | |
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd" | |
# or set a custom format using the strftime function format specifications, | |
# see 'man strftime' for details. | |
# HIST_STAMPS="mm/dd/yyyy" | |
# Would you like to use another custom folder than $ZSH/custom? | |
# ZSH_CUSTOM=/path/to/new-custom-folder | |
# Which plugins would you like to load? | |
# Standard plugins can be found in ~/.oh-my-zsh/plugins/* | |
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ | |
# Example format: plugins=(rails git textmate ruby lighthouse) | |
# Add wisely, as too many plugins slow down shell startup. | |
# antigen use oh-my-zsh | |
antigen bundle ansible | |
antigen bundle autojump | |
antigen bundle colorize | |
antigen bundle command-not-found | |
antigen bundle docker | |
# antigen bundle dbz/kube-aliases | |
antigen bundle git | |
antigen bundle history | |
antigen bundle httpie | |
antigen bundle jira | |
antigen bundle lein | |
antigen bundle osx | |
antigen bundle pip | |
antigen bundle sudo | |
antigen bundle zsh-users/zsh-autosuggestions | |
# antigen bundle zsh-users/zsh-syntax-highlighting | |
antigen apply | |
plugins=(git) | |
source $ZSH/oh-my-zsh.sh | |
# User configuration | |
# export MANPATH="/usr/local/man:$MANPATH" | |
# You may need to manually set your language environment | |
# export LANG=en_US.UTF-8 | |
# Preferred editor for local and remote sessions | |
# if [[ -n $SSH_CONNECTION ]]; then | |
# export EDITOR='vim' | |
# else | |
# export EDITOR='mvim' | |
# fi | |
# Compilation flags | |
# export ARCHFLAGS="-arch x86_64" | |
# Set personal aliases, overriding those provided by oh-my-zsh libs, | |
# plugins, and themes. Aliases can be placed here, though oh-my-zsh | |
# users are encouraged to define aliases within the ZSH_CUSTOM folder. | |
# For a full list of active aliases, run `alias`. | |
# | |
# Example aliases | |
# alias zshconfig="mate ~/.zshrc" | |
# alias ohmyzsh="mate ~/.oh-my-zsh" | |
# General | |
# Aliases | |
alias br="exec zsh" ß## Reload zsh after making changes to the profile | |
alias editprof="atom ~/.zshrc" ## Opens zsh profile in Atom | |
# Functions | |
# Kubernetes | |
# Aliases | |
klogs() { | |
namespace=${1:-'airflow'} | |
kubectl logs -n "$namespace" "$2" | |
} ## Gets service logs for a specific pod, $1 is the namespace, $2 is the pod name | |
# Functions | |
kbash() { kubectl -n "$1" exec -it "$2" /bin/bash; } | |
kclean() { | |
namespace=${1:-'airflow'} | |
kubectl -n "$namespace" get pods --no-headers=true | grep -v "Running" | grep -v "Pending" | sed -E 's.([a-z0-9-]+).*/\1/g' | xargs kubectl -n "$namespace" delete pod | |
} ## Deletes pods that are not running or pending. Used to clean up pods if auto clean is not turned on. | |
# Docker | |
# Aliases | |
alias dockertokube="eval $(minikube docker-env)" ## Sets docker context to minikube to deliver docker built images to the minikube | |
alias dockertolocal="eval $(minikube docker-env -u)" ## Unsets docker context to minikube to stop delivering docker built images to the minikube | |
# Functions | |
dkrprune() { | |
docker rmi $(docker images -f dangling=true -q); | |
} ## Removes docker images that are untagged or are orphaned. | |
dwipe() { docker kill $(docker ps -q); } ## Kill all running containers. | |
drmall() { docker rm $(docker ps -a -q); } ## Remove all stopped containers. | |
dbash() { docker exec -it "$1" /bin/bash; } ## Start a bash shell in a container $1 | |
# Git | |
# Aliases | |
# Functions | |
editgitconf() { atom ~/.gitconfig; } ## Opens git config in Atom | |
# Data/Files | |
# Aliases | |
# Functions | |
col_uniq_num() { awk -F , -v column1="$1",colum2="$2" '{ a[$column1]++ } END { for (b in a) { print b, $column2 }}' "$3"; } | |
col_uniq_name() { | |
awk -F , -v column1="$1" 'NR==1 { for (i=1; i<NF; i++) if ($i==column1) break } { a[$1]++ } END { for (b in a) {print b }}' "$2"; | |
} ## Prints the unique values in a single column in a file $1 is the column name $2 is the filename | |
removequotes() { sed 's/\"//g' "$1"; } | |
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh. | |
[[ -f ~/.p10k.zsh ]] && source ~/.p10k.zsh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment