dotfiles
dotfiles copied to clipboard
dot files
https://github.com/supertopher/dotfiles/blob/93a2e91931f96b5bbd7b4e3c6a76c6273eea55f9/.bash_profile#L75 If you have a bash script (like CircleCI's CLI: https://circle-downloads.s3.amazonaws.com/releases/build_agent_wrapper/circleci) that redirects the grep output into a file, you get escape characters for the coloring in the file, which...
`if [ $OSTYPE == 'darwin15' ] && ! [ $ITERM_SESSION_ID ]` needs to become `if [ $OSTYPE == 'darwin16' ] && ! [ $ITERM_SESSION_ID ]` and then it will work
in sublimelink change to "test -d /Applications/Sublime\ Text\ 3.app/ && {"
Needs wildcard character to actually ignore .swp files since they often have a filename before the extension.
If a user creates a user name with a space (hard to do, but not impossible) shell will read the path as two arguments instead of one. To fix this...
rspec1 to rspec2 update needs to change .rspec file or your TDD won't work for rails/ruby. If your.rspec file only have: --color and I was still getting this error. You...