Skip to content

Instantly share code, notes, and snippets.

@kuronekomichael
Last active December 22, 2015 04:48
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kuronekomichael/6419518 to your computer and use it in GitHub Desktop.
Save kuronekomichael/6419518 to your computer and use it in GitHub Desktop.
Sublime Text2 のプロジェクト設定ファイルのひな形です。 「除外ファイルってどうやるんだっけ?」とか「個別の設定ってトップレベルで良かったっけ?」とかすぐに忘れちゃうので(;^ω^)
{
// include/exclude files/dirs in project
"folders":
[
{
"path": ".",
"folder_exclude_patterns": [],
"file_exclude_patterns": ["*.sublime-workspace"]
}
],
// project unique settings
"settings": {
},
// project unique build systems
"build_systems": []
}
{
"folders":
[
{
// プロジェクトに含めるディレクトリ
"path": ".",
// 除外するディレクトリパターン
"folder_exclude_patterns": [],
// 除外するファイルパターン
"file_exclude_patterns": ["*.sublime-workspace"]
}
],
// プロジェクト固有の設定
"settings": {
"tab_size": 4,
"translate_tabs_to_spaces": true
},
// プロジェクト固有のビルド設定
"build_systems": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment