您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

151 行
3.6 KiB

  1. #!/bin/sh
  2. # profile --- 10sr profile
  3. __safe_add_path_r(){
  4. # add path to right
  5. test -d "$1" && PATH="${PATH}:$1"
  6. }
  7. __safe_add_path_l(){
  8. # add path to left
  9. test -d "$1" && PATH="$1:${PATH}"
  10. }
  11. __safe_add_path_l "$HOME/.cabal/bin"
  12. __safe_add_path_l "$HOME/.local/lib/gems/bin"
  13. __safe_add_path_l "$HOME/.local/bin"
  14. __safe_add_path_l "$HOME/.gem/ruby/2.1.0/bin"
  15. __safe_add_path_r "/c/mingw/bin"
  16. __safe_add_path_r "/c/mingw/msys/1.0/bin"
  17. # macports coreutils
  18. # $isdarwin cannot be used it is not defined yet
  19. __safe_add_path_l "/opt/local/bin"
  20. __safe_add_path_l "/opt/local/sbin"
  21. __safe_add_path_l "/opt/local/libexec/gnubin"
  22. __safe_add_path_l \
  23. "/opt/local/Library/Frameworks/Python.framework/Versions/3.2/bin"
  24. test -f "${__dotdir}/rc.py" && export PYTHONSTARTUP="${__dotdir}/rc.py"
  25. test -d "$HOME/.local/lib/python/site-packages" && \
  26. export PYTHONPATH="${PYTHONPATH}:${HOME}/.local/lib/python/site-packages"
  27. export GEM_HOME="$HOME/.local/lib/gems"
  28. export RUBYLIB="$RUBYLIB:$HOME/.local/lib/gems/lib"
  29. # it is not so good
  30. # http://archive.linux.or.jp/JF/JFdocs/Program-Library-HOWTO/shared-libraries.html
  31. # http://superuser.com/questions/324613/installing-a-library-locally-in-home-directory-but-program-doesnt-recognize-it
  32. # without this ENV i cannot run tmux. another way is to use --disable-shared
  33. # when building tmux
  34. export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$HOME/.local/lib"
  35. # in my environment powerdown does not work
  36. test -z "$DISPLAY" && test -z "$SSH_CONNECTION" && \
  37. type setterm >/dev/null 2>&1 && \
  38. setterm -blank 30 -powersave on # -powerdown 10
  39. ##################################
  40. # EnvVal definitions
  41. test "$TERM" = linux && export LANG=C
  42. export LC_MESSAGES=C
  43. export LC_TIME=C
  44. export TERMCAP="${TERMCAP}:vb="
  45. # export ENV=~/.shrc
  46. export PAGER="less"
  47. export LESS="-iRMX"
  48. # Style for lesspipe is defined in esc.style
  49. _src_hilite_lp_path="`command -v src-hilite-lesspipe.sh 2>/dev/null`"
  50. for f in /usr/share/source-highlight/src-hilite-lesspipe.sh
  51. do
  52. test -z "$_src_hilite_lp_path" && test -e "$f" && _src_hilite_lp_path="$f"
  53. done
  54. test -n "$_src_hilite_lp_path" && export LESSOPEN="| $_src_hilite_lp_path %s"
  55. if which vim >/dev/null
  56. then
  57. export EDITOR=vim
  58. else
  59. export EDITOR=vi
  60. fi
  61. # export CDPATH=".:~"
  62. export VISUAL="$EDITOR"
  63. export GIT_PAGER="less -F"
  64. export GIT_EDITOR="$EDITOR"
  65. export GIT_MERGE_AUTOEDIT=no
  66. if test -n "$TMUX" && \
  67. expr "$TERM" : screen >/dev/null && \
  68. expr "`tmux display -p '#{client_termname}'`" : '.*-256color$' >/dev/null
  69. then
  70. TERM=screen-256color
  71. fi
  72. if test -z "$USER" -a -n "$USERNAME"
  73. then
  74. export USER=$USERNAME
  75. fi
  76. # set TMP, TEMP, TMPDIR
  77. if test -z "$TMP"
  78. then
  79. if test -n "$TMPDIR"
  80. then
  81. export TMP=$TMPDIR
  82. elif test -n "$TEMP"
  83. then
  84. export TMP="$TEMP"
  85. else
  86. export TMP=/tmp
  87. fi
  88. fi
  89. expr "$TMP" : ".*$USER-tmp" >/dev/null || export TMP="${TMP}/${USER}-tmp"
  90. export TEMP=$TMP
  91. export TMPDIR=$TMP
  92. test -d "$TMP" || mkdir -p "$TMP"
  93. if test -d ~/dbx
  94. then
  95. export CHIT_PATH="$HOME/dbx/.chit"
  96. fi
  97. ###########################################
  98. # Host colors
  99. export _HOSTCOLOR_1=
  100. export _HOSTCOLOR_2=
  101. # black red green yellow blue magenta cyan white
  102. # Yellow is hard to read strings...
  103. case "`hostname`" in
  104. arch-vb-win8-vaio11)
  105. _HOSTCOLOR_1=magenta
  106. _HOSTCOLOR_2=white
  107. ;;
  108. arch-mba)
  109. _HOSTCOLOR_1=cyan
  110. _HOSTCOLOR_2=black
  111. ;;
  112. newkiwi)
  113. _HOSTCOLOR_1=magenta
  114. _HOSTCOLOR_2=white
  115. ;;
  116. debian-vb-win7-opti)
  117. _HOSTCOLOR_1=red
  118. _HOSTCOLOR_2=white
  119. ;;
  120. *)
  121. _HOSTCOLOR_1=green
  122. _HOSTCOLOR_2=black
  123. ;;
  124. esac