197 lines
7.1 KiB
Plaintext
197 lines
7.1 KiB
Plaintext
|
|
# 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.
|
|
export ZSH="$HOME/.oh-my-zsh"
|
|
|
|
# Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc.
|
|
# Initialization code that may require console input (password prompts, [y/n]
|
|
# confirmations, etc.) must go above this block, everything else may go below.
|
|
if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then
|
|
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
|
|
fi
|
|
|
|
# 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"
|
|
ZSH_COLORIZE_STYLE="monokai"
|
|
|
|
#POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(context dir vcs newline)
|
|
POWERLEVEL9K_SHORTEN_STRATEGY="truncate_from_right"
|
|
POWERLEVEL9K_SHORTEN_DIR_LENGTH=1
|
|
POWERLEVEL9K_SHORTEN_DELIMITER=""
|
|
#POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir vcs newline)
|
|
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(dir vcs nvm)
|
|
|
|
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status background_jobs command_execution_time time context)
|
|
POWERLEVEL9K_SHOW_CHANGESET=true
|
|
POWERLEVEL9K_CHANGESET_HASH_LENGTH=8
|
|
|
|
POWERLEVEL9K_RIGHT_SEGMENT_SEPARATOR=''
|
|
POWERLEVEL9K_RIGHT_SUBSEGMENT_SEPARATOR=''
|
|
|
|
POWERLEVEL9K_TIME_FOREGROUND='245'
|
|
POWERLEVEL9K_COMMAND_EXECUTION_TIME_FOREGROUND='245'
|
|
POWERLEVEL9K_STATUS_OK_FOREGROUND='green'
|
|
POWERLEVEL9k_STATUS_ERROR_FOREGROUND='red'
|
|
|
|
POWERLEVEL9K_TIME_BACKGROUND='clear'
|
|
POWERLEVEL9K_COMMAND_EXECUTION_TIME_BACKGROUND='clear'
|
|
POWERLEVEL9K_STATUS_OK_BACKGROUND='clear'
|
|
POWERLEVEL9K_STATUS_ERROR_BACKGROUND='clear'
|
|
POWERLEVEL9K_CONTEXT_DEFAULT_BACKGROUND='clear'
|
|
|
|
# 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.
|
|
plugins=(reminder common-aliases extract git sdk zsh-syntax-highlighting zsh-autosuggestions ansible brew colorize docker pipenv pip python terraform aws helm kubectl fzf alias-finder)
|
|
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"
|
|
|
|
# private data
|
|
export JETBRAINS_LICENSE_SERVER=""
|
|
export BW_SESSION=""
|
|
export JENKINS_URL=""
|
|
export JENKINS_SECRET=""
|
|
export JIRA_URL=""
|
|
export CONFLUENCE_URL=""
|
|
export PROXY_HOST=""
|
|
export COLORPIC_APIKEY=""
|
|
export VAULT_PASSWORD_FILE=""
|
|
export DEFAULT_BROWSER=${DEFAULT_BROWSER:-'Google Chrome'}
|
|
export TRELLO_BOARD_URL=""
|
|
export COMPANY_NAME=""
|
|
export GIT_PERSONAL_EMAIL=""
|
|
export GIT_PERSONAL_USER=""
|
|
export GIT_PRO_EMAIL=""
|
|
export GIT_PRO_USER=""
|
|
export GMAIL_APP_USER=""
|
|
export GMAIL_APP_PASSWORD=""
|
|
export KINDLE_ACCOUNT_EMAIL="" # e.g : john.doe@kindle.com
|
|
export PRINCIPAL_ACCOUNT_EMAIL="" # e.g : john.doe@gmail.com
|
|
export PRINCIPAL_ACCOUNT_FULLNAME="" # e.g : John Doe
|
|
export BB_TOKEN="" # Bitbucket server PAT (personal access token)
|
|
export GITHUB_TOKEN="" # GitHub PAT (personal access token)
|
|
|
|
source "$HOME/Code/dotfiles/dot_aliases/misc.sh"
|
|
|
|
if test -f "$HOME/.scripts/secrets.sh"; then
|
|
chmod +x "$HOME/.scripts/secrets.sh"
|
|
source "$HOME/.scripts/secrets.sh"
|
|
fi
|
|
|
|
export REPO_PATH=$HOME/Code
|
|
# 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
|
|
eval "$(fasd --init auto)"
|
|
|
|
#cm apply
|
|
|
|
# randomly check if we have new jira issues
|
|
runiflucky "istherenewissues"
|
|
|
|
case "$(uname -s)" in
|
|
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"
|
|
;;
|
|
esac
|
|
|
|
#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"
|
|
[[ -s "$SDKMAN_DIR/bin/sdkman-init.sh" ]] && source "$SDKMAN_DIR/bin/sdkman-init.sh"
|
|
|
|
case "$(uname -s)" in
|
|
Darwin)
|
|
ln -snf /usr/local/lib/python3.9/site-packages/pip /usr/local/bin/pip21
|
|
ln -snf /usr/local/lib/python3.9/site-packages/pip /usr/local/bin/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"
|
|
;;
|
|
esac
|
|
|
|
. ~/.3llo_config
|
|
export GOPATH="$HOME/go"
|
|
export RUSTPATH="$HOME/.cargo/bin"
|
|
export PATH="/usr/local/opt/grep/libexec/gnubin:$GOPATH/bin:$RUSTPATH:$PATH"
|
|
|
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
|
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
|
|
|
source /Users/morganwattiez/.config/broot/launcher/bash/br
|