dotfiles
Version:
The first JavaScript-based dotfiles powered by Grunt.
45 lines (35 loc) • 1.66 kB
Plain Text
# -- Zsh -----------------------------------------------------------------------
# Path to your oh-my-zsh configuration.
ZSH="<%- zsh.path_oh_my_zsh %>"
# -- Editor --------------------------------------------------------------------
EDITOR="<%- editor %>"
# -- Theme ---------------------------------------------------------------------
# Set name of the theme to load.
# Look in <%- zsh.path_oh_my_zsh %>/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME="<%- zsh.theme_oh_my_zsh %>"
# -- Plugins -------------------------------------------------------------------
# Plugins can be found in <%- zsh.path_oh_my_zsh %>/plugins/
# Custom plugins may be added to <%- zsh.path_oh_my_zsh %>/custom/plugins/
#
# Which plugins would you like to load?
# Example format: plugins=(rails git textmate ruby lighthouse)
plugins=(<%- zsh.plugins %>)
# -- Oh My Zsh -----------------------------------------------------------------
source $ZSH/oh-my-zsh.sh
# -- Options -------------------------------------------------------------------
unsetopt correct_all
unsetopt correct
# -- Aliases -------------------------------------------------------------------
source $HOME/.dotfiles/.aliases
if [[ -f "$HOME/.aliases" ]]; then
source $HOME/.aliases
fi
# -- Rbenv ---------------------------------------------------------------------
export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init -)"
# -- Term ----------------------------------------------------------------------
TERM=xterm-256color
# -- Update --------------------------------------------------------------------
dotfiles