Skip to content

Instantly share code, notes, and snippets.

@b099l3
Last active December 26, 2015 02:59
Show Gist options
  • Save b099l3/7082410 to your computer and use it in GitHub Desktop.
Save b099l3/7082410 to your computer and use it in GitHub Desktop.
command to set the default code snippets.
#!/bin/bash
echo -e "\n Setting xCode code snippets \n "
git clone git://gist.github.com/7081353.git tempgitdir
mv tempgitdir/* /Applications/Xcode.app/Contents/PlugIns/IDECodeSnippetLibrary.ideplugin/Contents/Resources
rm -rf tempgitdir
echo -e "\n Adding xCode Themes \n "
git clone git://gist.github.com/7115836.git tempgitdir
mv tempgitdir/* ~/Library/Developer/Xcode/UserData/FontAndColorThemes
rm -rf tempgitdir
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment