Skip to content

Instantly share code, notes, and snippets.

@yarwelp
Last active January 5, 2016 15:05
Show Gist options
  • Save yarwelp/caf3f615fe291b78a127 to your computer and use it in GitHub Desktop.
Save yarwelp/caf3f615fe291b78a127 to your computer and use it in GitHub Desktop.
Usable environment on Windows 7

Usable environment on Windows 7

Document ID: b0142a75-9b30-4c22-b036-2120cf239351

Softwares

Cygwin setup

Additional software to select during install

  • bash-completion
  • clang
  • gcc-core
  • gcc-g++
  • git
  • git-completion
  • mingw-gcc-core
  • mingw-gcc-g++
  • python3
  • rsync
  • ssh-pageant

Terminal emulator options

  • Text
    • Font: Courier New, 16-point
    • Locale: en_US
    • Character set: UTF-8

.bashrc additions

cat >> ~/.bashrc <<EOF
# Locale
export LANG=en_US.UTF-8
export LC_ALL=en_US.UTF-8

# PuTTY pageant (SSH agent) integration
eval $(/usr/bin/ssh-pageant -ra $TEMP/.ssh-pageant)
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment