2019-03-01 08:17:42 +00:00
|
|
|
# If you come from bash you might have to change your $PATH.
|
|
|
|
# export PATH=$HOME/bin:/usr/local/bin:$PATH
|
|
|
|
|
|
|
|
# Path to your oh-my-zsh installation.
|
2019-08-11 08:46:37 +00:00
|
|
|
export ZSH="$HOME/.oh-my-zsh"
|
2019-03-01 08:17:42 +00:00
|
|
|
|
|
|
|
# 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="powerlevel9k/powerlevel9k"
|
2019-07-20 10:10:13 +00:00
|
|
|
ZSH_COLORIZE_STYLE="monokai"
|
2019-03-01 08:17:42 +00:00
|
|
|
# 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 change how often to auto-update (in days).
|
|
|
|
# export UPDATE_ZSH_DAYS=13
|
|
|
|
|
|
|
|
# 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.
|
2019-07-22 07:50:20 +00:00
|
|
|
plugins=(reminder common-aliases extract git sdk zsh-syntax-highlighting zsh-autosuggestions ansible brew colorize docker pipenv pip python terraform aws)
|
2019-03-01 08:17:42 +00:00
|
|
|
|
|
|
|
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"
|
|
|
|
|
|
|
|
# ssh
|
|
|
|
# export SSH_KEY_PATH="~/.ssh/rsa_id"
|
|
|
|
|
2019-10-09 12:20:14 +00:00
|
|
|
export JETBRAINS_LICENSE_SERVER=https://licenseserver.collibra.com
|
|
|
|
|
2019-03-01 08:17:42 +00:00
|
|
|
# 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`.
|
|
|
|
. ~/.zsh_aliases
|
|
|
|
. ~/.zsh_functions
|
2019-05-29 06:51:19 +00:00
|
|
|
eval "$(fasd --init auto)"
|
2019-08-11 08:46:37 +00:00
|
|
|
|
2019-05-29 06:51:19 +00:00
|
|
|
#cm apply
|
|
|
|
|
2019-08-15 12:11:38 +00:00
|
|
|
# check if we have new jira issues
|
|
|
|
istherenewissues
|
|
|
|
|
2019-08-11 08:46:37 +00:00
|
|
|
case "$(uname -s)" in
|
2019-08-16 12:52:59 +00:00
|
|
|
Darwin)
|
|
|
|
unlink "$HOME/Library/Application Support/Code/User/settings.json"
|
|
|
|
ln -s "$HOME/.config/Code/User/settings.json" "$HOME/Library/Application Support/Code/User/settings.json"
|
|
|
|
;;
|
2019-08-11 08:46:37 +00:00
|
|
|
esac
|
|
|
|
|
2019-03-01 08:17:42 +00:00
|
|
|
#THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!! https://github.com/sdkman/sdkman-cli/issues/613
|
|
|
|
export SDKMAN_DIR="$HOME/.sdkman"
|
2019-07-20 10:10:13 +00:00
|
|
|
[[ -s "$SDKMAN_DIR/bin/sdkman-init.sh" ]] && source "$SDKMAN_DIR/bin/sdkman-init.sh"
|
|
|
|
|
2019-07-25 19:38:04 +00:00
|
|
|
#sdk use java 8.0.202-zulu
|
2019-08-11 08:46:37 +00:00
|
|
|
|
|
|
|
case "$(uname -s)" in
|
|
|
|
Darwin)
|
2019-11-09 12:09:59 +00:00
|
|
|
ln -snf /usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/bin/pip pip3
|
|
|
|
export PATH="$PATH:/usr/local/Cellar/python/3.7.3/Frameworks/Python.framework/Versions/3.7/bin/:/usr/local/Cellar/python/3.7.4/Frameworks/Python.framework/Versions/3.7/bin:/usr/local/Cellar/python/3.7.5/Frameworks/Python.framework/Versions/3.7/bin"
|
2019-08-11 08:46:37 +00:00
|
|
|
;;
|
|
|
|
esac
|
2019-10-25 12:25:50 +00:00
|
|
|
export GOPATH="$HOME/go"
|
2019-11-09 09:59:43 +00:00
|
|
|
export PATH="/usr/local/opt/grep/libexec/gnubin:$GOPATH/bin:$PATH"
|