Skip to content

Instantly share code, notes, and snippets.

@esnosy
Last active June 30, 2023 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save esnosy/37382ca9fd977a2eeebff2ccc6b139d4 to your computer and use it in GitHub Desktop.
Save esnosy/37382ca9fd977a2eeebff2ccc6b139d4 to your computer and use it in GitHub Desktop.
My VSCode settings
{
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.formatOnType": false
},
"cmake.configureOnOpen": true,
"editor.fontFamily": "'Fira Code', 'IntelOne Mono', 'JetBrains Mono', 'Cascadia Code', 'Droid Sans Mono', 'monospace', monospace",
"workbench.tree.indent": 20,
"cSpell.userWords": [
"AABB",
"astype",
"Bforartists",
"blit",
"bmesh",
"Cascadia",
"cgui",
"circumcircle",
"Cytron",
"dtype",
"halfspace",
"imshow",
"iyadahmed",
"KEYDOWN",
"linalg",
"linspace",
"mathutils",
"meshgrid",
"ndarray",
"Pixmap",
"pygame",
"pyqt",
"pyvista",
"qdarktheme",
"rescan",
"Rfcomm",
"scipy",
"siphash",
"SPRITESHEET",
"sqlalchemy",
"tensordot",
"Trimesh",
"tris",
"verts",
"voronoi",
"werkzeug"
],
"editor.minimap.enabled": false,
"editor.inlineSuggest.enabled": true,
"tabnine.experimentalAutoImports": true,
"workbench.editorAssociations": {
"*.bin": "hexEditor.hexedit",
"*.pdf": "latex-workshop-pdf-hook"
},
"[cpp]": {
"editor.defaultFormatter": "ms-vscode.cpptools",
"editor.suggest.insertMode": "insert"
},
"[c]": {
"editor.defaultFormatter": "xaver.clang-format",
"editor.suggest.insertMode": "insert"
},
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": false,
"scminput": false
},
"cmake.additionalCompilerSearchDirs": [
"C:/msys64/mingw32/bin",
"C:/msys64/clang32/bin",
"C:/msys64/clang64/bin",
"C:/msys64/clangarm64/bin",
"C:/msys64/ucrt64/bin"
],
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"C_Cpp.clang_format_sortIncludes": true,
"C_Cpp.codeAnalysis.runAutomatically": true,
// "files.autoSave": "afterDelay",
// "files.autoSaveDelay": 0,
"C_Cpp.codeAnalysis.updateDelay": 500,
// "sonarlint.rules": {
// "cpp:S1659": {
// "level": "off"
// },
// "python:S101": {
// "level": "off"
// }
// },
"workbench.iconTheme": "vscode-icons",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"redhat.telemetry.enabled": true,
"editor.selectionClipboard": false,
"editor.fontWeight": "500",
"workbench.colorTheme": "Default Dark+",
"[java]": {
"editor.defaultFormatter": "redhat.java"
},
"files.associations": {
"*.h": "c"
},
"window.titleBarStyle": "custom",
"diffEditor.ignoreTrimWhitespace": false,
"blender.executables": [
{
"path": "third_party/blender/blender-2.93-windows-x64/blender.exe",
"name": "Blender 2.93",
"isDebug": false
},
{
"path": "third_party/blender/blender-3.3-windows-x64/blender.exe",
"name": "Blender 3.3",
"isDebug": false
},
{
"path": "third_party/blender/blender-3.4-windows-x64/blender.exe",
"name": "Blender 3.4",
"isDebug": false
},
{
"path": "third_party/blender/blender-3.5-windows-x64/blender.exe",
"name": "Blender 3.5",
"isDebug": false
},
{
"path": "/home/iyadahmed/polygoniq/third_party/blender/blender-3.5-linux-x64/blender",
"name": "",
"isDebug": false
}
],
"window.zoomLevel": 1,
"cmake.useProjectStatusView": false,
"terminal.integrated.scrollback": 10000
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment