You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
592 B
36 lines
592 B
//Required Sublime Text plugins: |
|
// - SublimeAStyleFormatter: https://github.com/timonwong/SublimeAStyleFormatter |
|
// |
|
{ |
|
"folders": |
|
[ |
|
{ |
|
"follow_symlinks": true, |
|
"path": ".", |
|
"file_exclude_patterns": |
|
[ |
|
"*.dll", |
|
"*.meta", |
|
"*.csproj", |
|
"*.sln" |
|
], |
|
"folder_exclude_patterns": |
|
[ |
|
"Temp", |
|
"Library" |
|
] |
|
} |
|
], |
|
"settings": { |
|
"AStyleFormatter": { |
|
"options_default": { |
|
"autoformat_on_save": true, |
|
"attach-namespaces": true, |
|
"attach-classes": true, |
|
"pad-oper": false, |
|
"pad-header": false, |
|
"unpad-paren": true |
|
} |
|
} |
|
} |
|
}
|
|
|