Skip to content

Instantly share code, notes, and snippets.

@nemes1s
Created October 4, 2018 22:11
Show Gist options
  • Save nemes1s/c61d47c40002200213f6a2fdeb7222c1 to your computer and use it in GitHub Desktop.
Save nemes1s/c61d47c40002200213f6a2fdeb7222c1 to your computer and use it in GitHub Desktop.
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
export TERM="xterm-256color"
# Path to your oh-my-zsh installation.
export ZSH="/Users/dmytrozadorozhnyi/.oh-my-zsh"
plugins=(sudo git history taskwarrior tmux tmuxinator zsh-autosuggestions iterm2 man osx python)
plugins=( [plugins...] zsh-syntax-highlighting)
ZSH_THEME="powerlevel9k/powerlevel9k"
# zsh tmux settings
ZSH_TMUX_AUTOSTART='true'
export ZSH="$HOME/.oh-my-zsh"
POWERLEVEL9K_MODE="nerdfont-complete"
POWERLEVEL9K_PROMPT_ON_NEWLINE=true
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(os_icon user dir_writable dir vcs)
POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status command_execution_time background_jobs time ram)
#POWERLEVEL9K_MULTILINE_LAST_PROMPT_PREFIX="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]%}➜ )"
#POWERLEVEL9K_MULTILINE_FIRST_PROMPT_PREFIX=""
#POWERLEVEL9K_USER_ICON="\uF415" # 
POWERLEVEL9K_ROOT_ICON="\uF09C"
#POWERLEVEL9K_SUDO_ICON=$'\uF09C' # 
POWERLEVEL9K_TIME_FORMAT="%D{%H:%M}"
#POWERLEVEL9K_VCS_GIT_ICON='\uF408 '
#POWERLEVEL9K_VCS_GIT_GITHUB_ICON='\uF408 '
ZSH_DISABLE_COMPFIX=true
ENABLE_CORRECTION="true"
COMPLETION_WAITING_DOTS="true"
source $ZSH/oh-my-zsh.sh
alias suroot='sudo -E -s'
# source ~/.bash_profile
if [ -f ~/.bash_profile ]; then
. ~/.bash_profile;
fi
zstyle ':omz:module:tmux' auto-start 'yes'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment