Last active
May 5, 2018 15:42
-
-
Save petonic/cf67a5df891f4d866ec10cee58a548b5 to your computer and use it in GitHub Desktop.
hassio-addon-ssh-zshrc
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
# | |
# .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