Browse Source

Merge branch 'master' of github.com:10sr/dotfiles

pull/2/head
10sr 9 years ago
parent
commit
4df7aa1488
1 changed files with 6 additions and 9 deletions
  1. +6
    -9
      profile

+ 6
- 9
profile View File

@@ -40,10 +40,7 @@ export RUBYLIB="$RUBYLIB:$HOME/.local/lib/gems/lib"
# http://superuser.com/questions/324613/installing-a-library-locally-in-home-directory-but-program-doesnt-recognize-it
# without this ENV i cannot run tmux. another way is to use --disable-shared
# when building tmux
if ! __match "$LD_LIBRARY_PATH" "$HOME/.local/lib"
then
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$HOME/.local/lib"
fi
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$HOME/.local/lib"

# in my environment powerdown does not work
test -z "$DISPLAY" && test -z "$SSH_CONNECTION" && \
@@ -71,7 +68,7 @@ do
done
test -n "$_src_hilite_lp_path" && export LESSOPEN="| $_src_hilite_lp_path %s"

if null type vim
if which vim >/dev/null
then
export EDITOR=vim
else
@@ -85,8 +82,8 @@ export GIT_EDITOR="$EDITOR"
export GIT_MERGE_AUTOEDIT=no

if test -n "$TMUX" && \
__match $TERM screen && \
__match `tmux display -p '#{client_termname}'` 256color
expr "$TERM" : screen >/dev/null && \
expr "`tmux display -p '#{client_termname}'`" : '.*-256color$' >/dev/null
then
TERM=screen-256color
fi
@@ -105,10 +102,10 @@ then
export TMP=/tmp
fi
fi
__match "$TMP" "${USER}-tmp" >/dev/null || TMP="${TMP}/${USER}-tmp"
test -d "$TMP" || mkdir -p "$TMP"
export TMP="${TMP}/${USER}-tmp"
export TEMP=$TMP
export TMPDIR=$TMP
test -d "$TMP" || mkdir -p "$TMP"

if test -d ~/dbx
then


Loading…
Cancel
Save