Skip to content

Commit

Permalink
Update .gitignore file to exclude .cache/clangd and compile_commands.…
Browse files Browse the repository at this point in the history
…json
  • Loading branch information
gmh5225 committed Mar 4, 2024
1 parent b37dc0c commit 795dc74
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,8 @@ Thumbs.db
#llvm files
llvmcache*

#clangd
.cache/clangd

# CMake
compile_commands.json
14 changes: 14 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"clangd.arguments": [
"--all-scopes-completion",
"--clang-tidy",
"--completion-parse=always",
"--header-insertion=never",
"--completion-style=detailed",
"--function-arg-placeholders=false",
"--compile-commands-dir=${workspaceFolder}/",
"-log=info",
"-j=32"
],
"clangd.checkUpdates": true,
}

0 comments on commit 795dc74

Please sign in to comment.