blob: 04ba32b572cdcfebf705dc4468517f7452505559 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
source ~/.git-prompt.sh
export PATH=~/.bin:$PATH
export PYTHONPATH=/home/sgs/.pythonpath
export PS1='[\u@\[\033[0;32m\]\h\[\033[00m\] \w$(__git_ps1 " (%s)")]\\$ '
export HISTSIZE=10000
export HISTCONTROL=ignorespace:erasedups
shopt -s checkwinsize
export LANG=en_US.UTF-8
export EDITOR=emacs
alias s='screen -r'
## tunnels ##
alias ssocks='ssh -2 -4 -N -n -T -D 9999'
#############
## logins ##
alias server='ssh -2 -4 mb'
alias lfg='ssh -2 -4 fg'
############
## general flask ##
export FLASK_DEBUG=1
export FLASK_ENV=development
###################
|