From 92a8e3816275ecfbebfbaec5af6e4fce4e6f9b84 Mon Sep 17 00:00:00 2001 From: Recep Aslantas Date: Thu, 23 Mar 2023 23:18:08 +0300 Subject: [PATCH] vscode settings --- .vscode/c_cpp_properties.json | 20 ++++++++++++++++++++ .vscode/settings.json | 28 +++++++++++++++++++++++++++- 2 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 .vscode/c_cpp_properties.json diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..7136a9e --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,20 @@ +{ + "configurations": [ + { + "name": "Mac", + "includePath": [ + "${workspaceFolder}/**" + ], + "defines": [], + "macFrameworkPath": [ + "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks" + ], + "compilerPath": "/usr/bin/clang", + "cStandard": "c23", + "cppStandard": "c++23", + "intelliSenseMode": "macos-clang-arm64", + "configurationProvider": "vector-of-bool.cmake-tools" + } + ], + "version": 4 +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index c6af4c0..e4a6b4f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,5 +1,31 @@ { "C_Cpp.default.configurationProvider": "vector-of-bool.cmake-tools", "restructuredtext.confPath": "${workspaceFolder}/docs/source", - "workbench.colorTheme": "Visual Studio Dark - C++" + "workbench.colorTheme": "Default Light+ Experimental", + "editor.fontSize": 14, + "workbench.colorCustomizations": { + "[Default Light*]": { + "editor.background": "#fefefe", + "sideBar.background": "#fefefe", + "sideBar.foreground": "#343436", + "sideBarTitle.foreground": "#343436", + "sideBar.border": "#e2e2e4", + "statusBar.background": "#fefefe", + "titleBar.activeBackground": "#fefefe", + "tab.activeBackground": "#f4fff4aa", + "tab.inactiveBackground": "#fefefe", + "activityBar.background": "#fefefe", + "editorGroupHeader.tabsBackground": "#fefefe" + }, + "[Default Dark*]": { + "editor.background": "#1D1D25", + "sideBar.background": "#1D1D25", + "statusBar.background": "#1D1D25", + "titleBar.activeBackground": "#1D1D25", + "tab.activeBackground": "#2C2C3A", + "tab.inactiveBackground": "#1D1D25", + "activityBar.background": "#1D1D25", + "editorGroupHeader.tabsBackground": "#1D1D25" + } + }, } \ No newline at end of file