Last Updated: October 20, 2025
For your convenience, here's a quick summary:
| ### Keybase proof | |
| I hereby claim: | |
| * I am greglgomez on github. | |
| * I am greglgomez (https://keybase.io/greglgomez) on keybase. | |
| * I have a public key whose fingerprint is 2D8C 1AF0 50E5 6F1D 9DC6 1A4A 974D 26FE 93AC 5092 | |
| To claim this, I am signing this object: |
I hereby claim:
To claim this, I am signing this object:
| # Change directory to where your Sublime settings are now stored in Dropbox | |
| cd ~/Dropbox/Sublime/User | |
| # Create our .gitignore file with some unnecessary cache files and certificates we don't want to share. | |
| echo $'*ca-bundle\nPackage Control.cache\nPackage Control.last-run' > .gitignore | |
| # Initiate empty git repository | |
| git init | |
| # Add your remote Github repo |
| # Changing directory to where Sublime stores user prefs | |
| cd ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/ | |
| # Deleting existing "User" directory. | |
| # THIS WILL DELETE ANY EXISTING PREFERENCES. | |
| rm -r User | |
| # Creating Symlink from Sublime directory (current working directory) to Dropbox directory | |
| ln -s ~/Dropbox/Sublime/User |
| # Changing directory to where Sublime stores user prefs | |
| cd ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/ | |
| # Creating directory in Dropbox root to sync from | |
| mkdir ~/Dropbox/Sublime | |
| # Moving the "User" directory from Sublime default location to Dropbox directory we just created | |
| mv User ~/Dropbox/Sublime/ | |
| # Creating Symlink from Sublime directory (current working directory) to Dropbox directory |
| /* rewritten bootstrap 3 responsive timeline css for less | |
| * source: http://bootsnipp.com/snippets/featured/timeline-responsive | |
| */ | |
| .timeline { | |
| list-style: none; | |
| padding: 20px 0 20px; | |
| position: relative; | |
| &:before { | |
| top: 0; | |
| bottom: 0; |
| .entry-meta:last-child { | |
| margin-bottom: 24px; | |
| } |
| language: ruby | |
| cache: bundler | |
| rvm: | |
| - 2.1.0 | |
| script: bundle exec rake generate | |
| deploy: | |
| provider: divshot | |
| environment: | |
| dev: development | |
| staging: staging |