Skip to content

Instantly share code, notes, and snippets.

@singingwolfboy
Last active December 20, 2015 12:29
Show Gist options
  • Save singingwolfboy/6131864 to your computer and use it in GitHub Desktop.
Save singingwolfboy/6131864 to your computer and use it in GitHub Desktop.
{
// If you want exceptions reraised so you can see them in the console, change this to true.
"reraise_exceptions": false,
// If you want to have a syntax applied when new files are created, set new_file_syntax to the name of the syntax to use.
// The format is exactly the same as "name" in the rules below. For example, if you want to have a new file use
// JavaScript syntax, set new_file_syntax to 'JavaScript'.
"new_file_syntax": false,
// Put your custom syntax rules here:
"syntaxes": [
{
"name": "HTML",
"rules": [
{"file_name": ".*\\.underscore"}
]
},
{
"name": "Mako/Syntaxes/HTML (Mako)",
"rules": [
{"file_name": ".*\\.html"},
{"first_line": "^<%inherit "}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment