Old-materusPC: vscode settings 4

This commit is contained in:
Mateusz Słodkowicz 2024-11-01 22:51:06 +01:00
parent b6dbd01553
commit 9761f22f0c
Signed by: materus
SSH Key Fingerprint: SHA256:rzVduzTiiszuYfLPYD0SDZV+g8lxhpcRgpbOZA1X0Uo
2 changed files with 11 additions and 6 deletions

View File

@ -1,3 +1,6 @@
{ {
"nixEnvSelector.suggestion": false "nixEnvSelector.suggestion": false,
"files.associations": {
"iostream": "cpp"
}
} }

View File

@ -32,11 +32,14 @@
"nix.serverPath" = "${pkgs.nixd}/bin/nixd"; "nix.serverPath" = "${pkgs.nixd}/bin/nixd";
"nix.formatterPath" = "${pkgs.nixfmt-classic}/bin/nixfmt"; "nix.formatterPath" = "${pkgs.nixfmt-classic}/bin/nixfmt";
"clang-format.executable" = "${pkgs.clang-tools}/bin/clang-format"; "C_Cpp.clang_format_path" = "${pkgs.clang-tools}/bin/clang-format";
"clang-tidy.executable" = "${pkgs.clang-tools}/bin/clang-tidy"; "C_Cpp.clang_format_fallbackStyle" = "Microsoft";
"clang-tidy.executable" = "${pkgs.clang-tools}/bin/clang-tidy";
"python.defaultInterpreterPath"= "${pkgs.python3Full}/bin/python";
"python.defaultInterpreterPath" = "${pkgs.python3Full}/bin/python";
"[cpp]" = {
"editor.defaultFormatter" = "xaver.clang-format";
};
}; };
materus.profile = { materus.profile = {
@ -59,7 +62,6 @@
open-vsx.twxs.cmake open-vsx.twxs.cmake
vscode-extensions.ms-vscode.cpptools vscode-extensions.ms-vscode.cpptools
vscode-marketplace.ms-vscode.cmake-tools vscode-marketplace.ms-vscode.cmake-tools
open-vsx.xaver.clang-format
vscode-marketplace.cs128.cs128-clang-tidy vscode-marketplace.cs128.cs128-clang-tidy
#Python #Python