diff --git a/.gitignore b/.gitignore index 79e8dfe5..f15dce2f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ *.swp *.exe *.out -build/ \ No newline at end of file +build/ diff --git a/.vscode/settings.json b/.vscode/settings.json index 310936c6..3668b6b6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,7 @@ { - "C_Cpp.clang_format_style": "{ BasedOnStyle: LLVM, UseTab: Never, IndentWidth: 4, TabWidth: 4, BreakBeforeBraces: Allman, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false, ColumnLimit: 80, AccessModifierOffset: -4 }", -} \ No newline at end of file + "C_Cpp.clang_format_style": "{ BasedOnStyle: Google, UseTab: Never, IndentWidth: 4, TabWidth: 4, BreakBeforeBraces: Allman, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false, ColumnLimit: 80, AccessModifierOffset: -4 }", + "editor.formatOnSave": true, + "editor.formatOnPaste": true, + "editor.formatOnType": true, + "files.insertFinalNewline": true, +}