Skip to content

Instantly share code, notes, and snippets.

@osteele
Last active January 21, 2016 15:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save osteele/f3d91f0c0fc4d95fca9f to your computer and use it in GitHub Desktop.
Save osteele/f3d91f0c0fc4d95fca9f to your computer and use it in GitHub Desktop.
# Install Package Control package manager for ST3
ST3_CONFIG=~/.config/sublime-text-3
PC_DIR=$ST3_CONFIG/Installed\ Packages/Package\ Control.sublime-package
PC_FNAME=Package%20Control.sublime-package
mkdir -p "$PC_DIR"
curl -O https://sublime.wbond.net/$PC_FNAME
unzip -u $PC_FNAME -d "$PC_DIR"
rm $PC_FNAME
# Add the Anaconda and Floobits packages. When ST3 is launched, Package Control will install these.
mkdir -p $ST3_CONFIG/Packages/User
cat > $ST3_CONFIG/Packages/User/Package\ Control.sublime-settings <<EOF
{
"installed_packages":
[
"Anaconda",
"BracketHighlighter",
"Floobits",
"GitGutter",
"SublimeREPL",
]
}
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment