Skip to content

Instantly share code, notes, and snippets.

@krstp
Forked from egel/sublime-project-python
Created July 22, 2021 03:42
Show Gist options
  • Save krstp/cc005441ecbaf08286d51383add3625e to your computer and use it in GitHub Desktop.
Save krstp/cc005441ecbaf08286d51383add3625e to your computer and use it in GitHub Desktop.
Settings for Python ".sublime-project" file for Sublime text editor
{
"folders":
[
{
"follow_symlinks": true,
"path": ".",
"folder_exclude_patterns":
[
"bin",
"include",
"lib",
"local",
"*.idea",
],
"file_exclude_patterns":
[
"README.html",
".DS_Store",
"*.pid",
"*.pyc",
],
},
],
"settings":
{
"tab_size": 4,
"rulers":[79],
"word_wrap": true,
"wrap_width": 80,
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment