0

I made a Vibrant theme which inclludes markdown and restructured text syntax highlighting in sublime text and would like to share it via package control. Is there a way to do that so that it will be accessible and installable

tushortz
  • 3,697
  • 2
  • 18
  • 31
  • 1
    You can see [submitting a Package](https://packagecontrol.io/docs/submitting_a_package) in official *package-control* docs. – sergioFC Jul 31 '15 at 14:01

1 Answers1

1

Given you have already hosted your theme on GitHub or Bitbucket:

  1. Fork the package control channel
  2. Add your theme to the matching repository file (see below)
  3. Submit pull request

If your theme is called "My Theme" , you would add this to repository/m.json. Make sure you to put your theme at the right position, the list is meant to be alphabetized. Also make sure your JSON is valid before submitting.

One last word on the tags value, as it was only introduced with Package Control 3.0. New packages need to tagged releases in your repository, so keep this set true. (Old packages could be organized by timestamp instead.)

More on Submitting a Package in the official documentation.

idleberg
  • 12,634
  • 7
  • 43
  • 70
  • You should add a link to the complete docs: https://packagecontrol.io/docs/submitting_a_package – MattDMo Jul 31 '15 at 14:13