Save this thing in your
~/Library/Application\ Support/Sublime\ Text\ 2/Packages/User
folder.
Oh, and drop the .xml file extension at the end.
| <snippet> | |
| <content><![CDATA[#!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import numpy as np | |
| import pandas as pd | |
| import matplotlib.pyplot as plt | |
| ${1}]]></content> | |
| <!-- Optional: Tab trigger to activate the snippet --> | |
| <tabTrigger>impsci</tabTrigger> | |
| <!-- Optional: Scope the tab trigger will be active in --> | |
| <scope>source.python</scope> | |
| <!-- Optional: Description to show in the menu --> | |
| <description>imports</description> | |
| </snippet> |