Skip to content

Instantly share code, notes, and snippets.

@egg82
Last active December 31, 2019 20:56
Show Gist options
  • Save egg82/3c7907bbde64c273b9e5a716ef9592c2 to your computer and use it in GitHub Desktop.
Save egg82/3c7907bbde64c273b9e5a716ef9592c2 to your computer and use it in GitHub Desktop.
ZSH plugins
TERM="xterm-256color"
POWERLEVEL9K_MODE="nerdfont-complete"
POWERLEVEL9K_DISABLE_PROMPT=true
POWERLEVEL9K_PROMPT_ON_NEWLINE=false
ZSH_THEME="powerlevel9k/powerlevel9k"

...

plugins=(
  autoupdate
  zsh-256color
  zsh-autosuggestions
  colored-man-pages
  fast-syntax-highlighting
  zsh-reentry-hook
  safe-paste
  thefuck
  git
)

...

export JAVA_HOME="/usr/lib/jvm/java-8-openjdk-amd64"

if [[ -n $SSH_CONNECTION ]]; then
  export EDITOR="nano"
else
  export EDITOR="nano"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment