Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 1.31 KB

README.md

File metadata and controls

53 lines (35 loc) · 1.31 KB

Packages

See ./Packages for the listing of packages that these settings enable.

Installation

Fonts

  1. Install the Monaco font - unix, windows
  2. Install the [Source Code Pro]https://github.com/adobe/source-code-pro) font

OSX/Linux

  • Ubuntu: cd ~/.config/sublime-text-3
  • OSX: cd ~/Library/Application\ Support/Sublime\ Text\ 3/
rm ./Packages/User/*
git init
git remote add origin https://github.com/balupton/sublime-settings.git
git pull origin master  --force
git submodule init; git submodule update

Windows

  • XP: cd 'Application Data/Sublime Text 3'
  • 7+: cd 'AppData/Roaming/Sublime Text 3'
rm .\Packages\User\*
git init
git remote add origin https://github.com/balupton/sublime-settings.git
git fetch origin
git checkout windows
git submodule init; git submodule update

Update

Ensure the submodules are the latest with:

./update.sh

Suggestion

Instead of doing the above, you'll probably want to fork the repository and use your fork instead of mine. That'll allow you to push your changes back.