Skip to content

Instantly share code, notes, and snippets.

@maxmckenzie
Created July 13, 2019 09:32
Show Gist options
  • Save maxmckenzie/d1c419907feb4ef63b8270ac5340ff33 to your computer and use it in GitHub Desktop.
Save maxmckenzie/d1c419907feb4ef63b8270ac5340ff33 to your computer and use it in GitHub Desktop.
sublime todo plugin settings
{
"patterns": {
"TODO": "TODO[\\s]*?[\\s]*(?P<todo>.*)$"
},
"patterns_weight": {
},
"exclude_folders": [
"*.git*",
"node_modules/**"
],
"exclude_files": [
"*.sublime-workspace",
"*.sublime-project"
],
"resolve_symlinks": true,
"case_sensitive": false,
"render_include_folder": true,
"render_folder_depth": 1,
"render_maxspaces": 50,
"render_header_format": "%d - %c files in %t secs",
"render_header_date": "%A %m/%d/%y at %I:%M%p",
"navigation_forward_skip": 10,
"navigation_backward_skip": 10
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment