Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2014
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1.  
  2.  
  3. alias subl="/C/Program\ Files/Sublime\ Text\ 3/sublime_text.exe"
  4.  
  5. alias subl3=subl
  6.  
  7. alias sublw="/C/Program\ Files/Sublime\ Text\ 3/sublime_text.exe -w"
  8.  
  9. alias ls="ls --color"
  10.  
  11. alias gti=git
  12.  
  13.  
  14. export PATH="$PATH:/c/Users/Thom/Portable"
  15.  
  16.  
  17. export SHELL="bash"
  18.  
  19. export TERM="msys"
  20.  
  21.  
  22. export EDITOR=subl
  23.  
  24. export VISUAL=subl
  25.  
  26.  
  27. export HISTSIZE=10000
  28.  
  29. export HISTIGNORE="&:[ \t]*:ls:[bf]g:exit"
  30.  
  31.  
  32. bind '"\e[A": history-search-backward'
  33.  
  34. bind '"\e[B": history-search-forward'
  35.  
  36.  
  37. export GIT_PS1_SHOWDIRTYSTATE=true
  38.  
  39. export GIT_PS1_SHOWUNTRACKEDFILES=true
  40.  
  41. # export GIT_PS1_SHOWUPSTREAM=auto
  42.  
  43. export GIT_PS1_SHOWSTASHSTATE=true
  44.  
  45.  
  46. PS1='\[\033]0;$MSYSTEM:${PWD//[^[:ascii:]]/?}\007\]' # set window title
  47.  
  48. PS1="$PS1"'\n' # new line
  49.  
  50. PS1="$PS1"'\[\033[1;30m\]' # bold black (dark grey)
  51.  
  52. PS1="$PS1"'{\T} ' # time<space>
  53.  
  54. PS1="$PS1"'\[\033[1;32m\]' # green
  55.  
  56. PS1="$PS1"'\u@\h ' # user@host<space>
  57.  
  58. PS1="$PS1"'\[\033[1;33m\]' # yellow
  59.  
  60. PS1="$PS1"'\w' # current working directory
  61.  
  62. if test -z "$WINELOADERNOEXEC"
  63.  
  64. then
  65.  
  66. PS1="$PS1"'$(__git_ps1)' # bash function
  67.  
  68. fi
  69.  
  70. PS1="$PS1"'\[\033[0m\]' # reset
  71.  
  72. PS1="$PS1"'\n' # new line
  73.  
  74. PS1="$PS1"'$ ' # prompt: always $
  75.  
  76.  
  77.  
  78. cd /C/Projects
  79.  
  80. clear
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement