Add vscode LSP support

This commit is contained in:
Florian RICHER 2025-02-08 19:40:31 +01:00
parent d5ea2832d5
commit 5686c97114
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77
3 changed files with 25 additions and 4 deletions

15
.vscode/c_cpp_properties.json vendored Normal file
View file

@ -0,0 +1,15 @@
{
"configurations": [
{
"name": "Linux",
"includePath": [
"${workspaceFolder}/**",
"${env:C_INCLUDE_PATH}"
],
"defines": [],
"cStandard": "c11",
"intelliSenseMode": "linux-gcc-x64"
}
],
"version": 4
}

5
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,5 @@
{
"files.associations": {
"*.h": "c"
}
}