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
#!/usr/bin/env bash | |
# go dev | |
alias godev="cd ~/dev/" | |
# config management | |
alias aliasconfig="subl $ZSH_CUSTOM/.aliases" | |
alias zshconfig="subl ~/.zshrc" | |
# do not "source ~/.zshrc" as it can have unintended consequences. | |
alias zshrefresh="exec zsh" |
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
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="$HOME/.oh-my-zsh" | |
# Hide both user and hostname from prompt unless USER ≠ DEFAULT_USER | |
DEFAULT_USER="$(whoami)" | |
# TEMPFIX if developing as two admin users on same machine |
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
"use strict"; | |
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// choose either `'stable'` for receiving highly polished, | |
// or `'canary'` for less polished but more frequent updates | |
rainglow: 'lavender', | |
updateChannel: 'stable', |