From 881886c37526714bece228bfbfd22818c27b9088 Mon Sep 17 00:00:00 2001 From: c0repwn3r Date: Mon, 9 May 2022 09:46:42 -0400 Subject: [PATCH] update ignore --- .gitignore | 2 ++ .vscode/c_cpp_properties.json | 16 ++++++++++++++++ .vscode/settings.json | 5 +++++ 3 files changed, 23 insertions(+) create mode 100644 .gitignore create mode 100644 .vscode/c_cpp_properties.json create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2cfa49f --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +i386-elf-toolchain-aur +i386-elf-tools-aur-pkgs diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..9e6febf --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,16 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**" + ], + "defines": [], + "compilerPath": "/usr/bin/clang", + "cStandard": "c17", + "cppStandard": "c++14", + "intelliSenseMode": "linux-clang-x64" + } + ], + "version": 4 +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..3e427ab --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "files.associations": { + "idt.h": "c" + } +}