27 lines
866 B
JSON
27 lines
866 B
JSON
// Folder-specific settings
|
|
//
|
|
// For a full list of overridable settings, and general information on folder-specific settings,
|
|
// see the documentation: https://zed.dev/docs/configuring-zed#settings-files
|
|
{
|
|
"tab_size": 4,
|
|
"ensure_final_newline_on_save": true,
|
|
"lsp": {
|
|
"clangd": {
|
|
"binary": {
|
|
"arguments": [
|
|
"--header-insertion=never",
|
|
"--all-scopes-completion",
|
|
"--completion-style=detailed",
|
|
"--clang-tidy",
|
|
"-j=4",
|
|
"--pch-storage=memory",
|
|
"--compile-commands-dir=build",
|
|
"--background-index",
|
|
"--ranking-model=heuristics",
|
|
"--function-arg-placeholders=false",
|
|
],
|
|
},
|
|
},
|
|
},
|
|
}
|