[emacs] Bind help-map to F1, move my-help to F1 F1
[mina86-dot-files.git] / sh / profile
blob0e8dca45d6873404b7c66644a69e44fafc7b844f
1 ## .profile                                             -*- shell-script -*-
3 ENV=~/.shellrc
4 export ENV
6 if [ -n "$BASH_VERSION" ] && [ -r ~/.bashrc ]; then
7         . ~/.bashrc
8 elif [ -r ~/.shellrc ]; then
9         . ~/.shellrc
12 # Start emacs daemon if not running
13 if which emacs && _uid=$(id -u) && [ "$_uid" -ne 0 ] &&
14    ! [ -e "${TMPDIR-/tmp}/emacs$_uid/server" ]; then
15         emacs --daemon
16 fi </dev/null >/dev/null 2>&1 &
17 disown