Created
December 19, 2016 09:57
-
-
Save djetelina/84bf044f2f435c14f0dfa48d760b0962 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
DEFAULT_USER='david' | |
export PATH=$PATH:~/.local/bin | |
export ZSH=/home/david/.oh-my-zsh | |
ZSH_THEME="powerlevel9k/powerlevel9k" | |
# POWERLEVEL stuff | |
POWERLEVEL9K_MODE='awesome-fontconfig' | |
POWERLEVEL9K_SHORTEN_DIR_LENGTH=3 | |
POWERLEVEL9K_SHORTEN_STRATEGY="truncate_middle" | |
POWERLEVEL9K_PROMPT_ON_NEWLINE=false | |
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(time context dir root_indicator) | |
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status vcs) | |
POWERLEVEL9K_TIME_BACKGROUND="green" | |
POWERLEVEL9K_TIME_FOREGROUND="black" | |
POWERLEVEL9K_DIR_HOME_BACKGROUND="green" | |
POWERLEVEL9K_DIR_HOME_FOREGROUND="black" | |
POWERLEVEL9K_DIR_HOME_SUBFOLDER_BACKGROUND="green" | |
POWERLEVEL9K_DIR_HOME_SUBFOLDER_FOREGROUND="black" | |
POWERLEVEL9K_DIR_DEFAULT_BACKGROUND="black" | |
POWERLEVEL9K_DIR_DEFAULT_FOREGROUND="green" | |
POWERLEVEL9K_OS_ICON_BACKGROUND="blue" | |
POWERLEVEL9K_OS_ICON_FOREGROUND="black" | |
POWERLEVEL9K_STATUS_OK_BACKGROUND="green" | |
POWERLEVEL9K_STATUS_OK_FOREGROUND="green" | |
POWERLEVEL9K_CONTEXT_DEFAULT_BACKGROUND="black" | |
POWERLEVEL9K_CONTEXT_DEFAULT_FOREGROUND="green" | |
POWERLEVEL9K_CONTEXT_ROOT_BACKGROUND="black" | |
POWERLEVEL9K_CONTEXT_ROOT_FOREGROUND="green" | |
# Normal stufff | |
HYPHEN_INSENSITIVE="true" | |
ENABLE_CORRECTION="true" | |
COMPLETION_WAITING_DOTS="true" | |
DISABLE_UNTRACKED_FILES_DIRTY="true" | |
HIST_STAMPS="dd.mm.yyyy" | |
# ZSH Plugins | |
plugins=(command-not-found debian gitfast) | |
source $ZSH/oh-my-zsh.sh | |
export LANG=en_US.UTF-8 | |
if [[ -n $SSH_CONNECTION ]]; then | |
export EDITOR='vim' | |
else | |
export EDITOR='vim' | |
fi | |
alias zshconfig="subl ~/.zshrc" | |
bindkey '\e[A' directory-history-search-backward | |
bindkey '\e[B' directory-history-search-forward | |
bindkey '^j' history-substring-search-up | |
bindkey '^k' history-substring-search-down | |
source ~/zsh-directory-history/directory-history.plugin.zsh | |
source ~/.bash_aliases | |
source /home/david/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment