Skip to content

Instantly share code, notes, and snippets.

@petonic
Last active May 5, 2018 15:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save petonic/cf67a5df891f4d866ec10cee58a548b5 to your computer and use it in GitHub Desktop.
Save petonic/cf67a5df891f4d866ec10cee58a548b5 to your computer and use it in GitHub Desktop.
hassio-addon-ssh-zshrc
#
# .zshrc for hassio SSH
#
# Changelog:
# 2018-05-05 Initial
# Path to your oh-my-zsh installation.
export ZSH=$HOME/.oh-my-zsh
export EDITOR=/usr/local/bin/rmate
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-zsh is loaded.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
ZSH_THEME="robbyrussell"
HYPHEN_INSENSITIVE="true"
DISABLE_AUTO_UPDATE="true"
COMPLETION_WAITING_DOTS="true"
plugins=(extract git nmap)
source $ZSH/oh-my-zsh.sh
alias l=less
alias m=rmate
alias ls='ls -F'
alias ha=hassio
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment