dev-setup: add CMake tools to VS Code

This commit is contained in:
Jannik Beyerstedt 2020-05-15 12:51:48 +02:00
parent 7c43304c14
commit 709dbf741a
2 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,7 @@
"C_Cpp.clang_format_style": "file",
"C_Cpp.clang_format_fallbackStyle": "{BasedOnStyle: LLVM, Language: Cpp, IndentWidth: 2, ColumnLimit: 110, BreakBeforeBraces: Attach, PointerAlignment: Left, AccessModifierOffset: -2, Cpp11BracedListStyle: true, AlignConsecutiveDeclarations: true, AlignConsecutiveAssignments: true, AlignEscapedNewlines: Left, AlignTrailingComments: true, IndentWrappedFunctionNames: false, AllowShortFunctionsOnASingleLine: Inline, SpacesBeforeTrailingComments: 2, FixNamespaceComments: true, ReflowComments: false, SortIncludes: false, SortUsingDeclarations: false}",
"C_Cpp.clang_format_path": "/usr/local/bin/clang-format",
"C_Cpp.intelliSenseEngine": "Tag Parser",
"C_Cpp.intelliSenseEngine": "Default",
"editor.tabSize": 2,
"editor.renderWhitespace": "boundary",
"editor.minimap.enabled": false,

View File

@ -42,6 +42,8 @@
shell: |
PATH=/usr/local/bin:$PATH
code --install-extension ms-vscode.cpptools
code --install-extension ms-vscode.cmake-tools
code --install-extension twxs.cmake
when: user_vscode == true and user_lang_cpp == true
# VS Code - Python Development Tools