Last active
December 22, 2015 04:48
-
-
Save kuronekomichael/6419518 to your computer and use it in GitHub Desktop.
Sublime Text2 のプロジェクト設定ファイルのひな形です。
「除外ファイルってどうやるんだっけ?」とか「個別の設定ってトップレベルで良かったっけ?」とかすぐに忘れちゃうので(;^ω^)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
// 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": [] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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