updated to 23.11

This commit is contained in:
2023-12-03 21:06:22 +01:00
parent 6eff12ec36
commit 254ae35c72
3 changed files with 36 additions and 26 deletions

View File

@ -61,6 +61,16 @@
"editor.defaultFormatter" = "ms-python.autopep8";
};
"[javascript]" = {
"editor.formatOnSave" = true;
"editor.formatOnSaveMode" = "modificationsIfAvailable";
};
"[typescript]" = {
"editor.formatOnSave" = true;
"editor.formatOnSaveMode" = "modificationsIfAvailable";
};
"[latex]" = {
"editor.formatOnSave" = true;
"editor.formatOnSaveMode" = "file"; # modificationsIfAvailable does not work
@ -106,7 +116,7 @@
"zig.zigPath" = ""; # Use the zig from the PATH
"zig.zls.path" = "${pkgs.unstable.zls}/bin/zls";
"C_Cpp.default.compilerPath" = "${pkgs.gnat11}/bin/g++";
"C_Cpp.default.compilerPath" = "${pkgs.gnat}/bin/g++";
"C_Cpp.default.includePath" = [
"\${workspaceFolder}/**"
];