Last active
January 15, 2017 01:30
-
-
Save aseigneurin/b8da67ff1a7c060f8233eb507debc888 to your computer and use it in GitHub Desktop.
Oh-My-Zsh configuration
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
PROMPT=$'%{$fg_bold[red]%}%D{%K:%M:%S}%{$reset_color%} %{$fg[cyan]%}%n%{$fg[grey]%}@%{$fg[green]%}%M%{$fg[grey]%}:%{$fg_bold[yellow]%}%d%{$fg[grey]%}$(git_prompt_info) $ %{$reset_color%}' | |
ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg_bold[white]%}git:(" | |
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$fg[white]%})%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}*" | |
ZSH_THEME_GIT_PROMPT_CLEAN="" |
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
alias mvndeps='mvn dependency:sources' | |
alias mvntree='mvn dependency:tree' | |
alias sublime='/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl' | |
alias subl=sublime | |
alias run_zookeeper='$KAFKA_HOME/bin/zookeeper-server-start $KAFKA_HOME/etc/kafka/zookeeper.properties' | |
alias run_kafka='$KAFKA_HOME/bin/kafka-server-start $KAFKA_HOME/etc/kafka/server.properties' |
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
export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_91.jdk/Contents/Home/ | |
export SPARK_HOME=~/software/spark-2.0.0-bin-hadoop2.7 | |
export SPARK_LOCAL_IP=127.0.0.1 | |
export SPARK_MASTER_IP=127.0.0.1 | |
export KAFKA_HOME=~/software/confluent-3.1.1 | |
export PATH=~/bin:$PATH:$SPARK_HOME/sbin:$SPARK_HOME/bin:$KAFKA_HOME/bin |
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
ZSH_THEME=alexis |
Author
aseigneurin
commented
Jan 12, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment