add sublime project file

This commit is contained in:
Felix Ruess
2014-09-10 12:13:11 +02:00
parent 557c0112fc
commit 5b7ef47585
2 changed files with 47 additions and 0 deletions

2
.gitignore vendored
View File

@@ -31,6 +31,8 @@
/build.properties
/META-INF
paparazzi.sublime-workspace
# JetBrains (PyCharm, etc) IDE project files
.idea

45
paparazzi.sublime-project Normal file
View File

@@ -0,0 +1,45 @@
{
"folders":
[
{
"follow_symlinks": true,
"path": ".",
"file_exclude_patterns":
[
"*.swp",
".emacs*",
"*.o",
"*.a",
"*.d",
"*.depend",
"*.so",
"*.out",
"*.cmo",
"*.cma",
"*.cmi",
"*.cmx",
"*.cmxa",
"*.sublime-project",
"*.sublime-workspace",
".project",
".cproject",
".pydevproject"
],
"folder_exclude_patterns":
[
".settings",
".idea",
".vagrant",
"var"
]
}
],
"settings":
{
"tab_size": 2,
"translate_tabs_to_spaces": true,
"highlight_line": true,
"trim_trailing_white_space_on_save": true,
"ensure_newline_at_eof_on_save": true
},
}