25 lines
525 B
Bash
25 lines
525 B
Bash
#
|
|
# Executes commands at the start of an interactive session.
|
|
#
|
|
# Authors:
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
#
|
|
|
|
# Source Prezto.
|
|
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
|
|
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
|
|
fi
|
|
|
|
# Customize to your needs...
|
|
export GOPATH=/home/ian/.go
|
|
export PATH=$GOPATH/bin:$PATH
|
|
export VIRTUAL_ENV_DISABLE_PROMPT=1
|
|
export VISUAL=vim
|
|
export EDITOR=vim
|
|
|
|
alias open=xdg-open
|
|
alias vi=vim
|
|
alias subl=subl3
|
|
alias tmux="TERM=xterm-256color tmux"
|
|
alias grep="grep --color=auto"
|