You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
618 B
32 lines
618 B
#
|
|
# 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...
|
|
alias c='clear'
|
|
alias lsa='ls -a'
|
|
alias v='vim'
|
|
|
|
#RaspberryPi
|
|
export RPI=10.1.1.202
|
|
|
|
# Git
|
|
alias g='git'
|
|
alias gb='git branch -v'
|
|
alias gco='git checkout'
|
|
alias gst='git status'
|
|
|
|
# URBN
|
|
export MISL_LOCAL_DEV='http://localhost:8800'
|
|
alias MobileServices='cd ~/URBNLocal/source/MobileServices'
|
|
alias MISLWebUI='cd ~/URBNLocal/source/MISLWebUI'
|
|
|