20 lines
418 B
Text
20 lines
418 B
Text
|
|
{
|
||
|
|
"folders":
|
||
|
|
[
|
||
|
|
{
|
||
|
|
"path": ".",
|
||
|
|
"folder_exclude_patterns": [".cache", "build"],
|
||
|
|
// binaries have no extension, so exclude them by name as you add them
|
||
|
|
"file_exclude_patterns": ["*.o", "*.d", "outputf.out"]
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"settings":
|
||
|
|
{
|
||
|
|
// clangd already indexes C++; Sublime's own indexer just duplicates it
|
||
|
|
"index_files": false,
|
||
|
|
"tab_size": 4,
|
||
|
|
"translate_tabs_to_spaces": false,
|
||
|
|
"rulers": [80]
|
||
|
|
}
|
||
|
|
}
|