.mintty/colors: Rename solarized-alt -> solarized-ansi
[dotfiles.git] / .bash_profile
index fbd7e74244d012002234c6b8133ffe23bfbb8462..0b6071af2484c55173a9f5db776e69a603f6b8b9 100644 (file)
@@ -5,6 +5,11 @@ if [ -f ~/.bashrc ]; then
   source ~/.bashrc
 fi
 
+# Set mintty color-palette
+if [ "$UNAME" = "Cygwin" ]; then
+  source ~/.mintty/colors/solarized-ansi.sh
+fi
+
 # keychain
 keychain="$(type -P keychain)"
 test -n "$keychain" && {
@@ -14,3 +19,6 @@ test -n "$keychain" && {
   fi
 }
 unset keychain
+
+# Load RVM function
+[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"