Skip to content

Instantly share code, notes, and snippets.

@Spriithy
Last active March 16, 2019 08:49
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 Spriithy/2b17277d286091274469204e96a05a2c to your computer and use it in GitHub Desktop.
Save Spriithy/2b17277d286091274469204e96a05a2c to your computer and use it in GitHub Desktop.
{
"workbench.sideBar.location": "right",
"files.associations": {
"*.h": "c",
"*.c": "c"
},
"editor.formatOnSave": true,
"editor.rulers": [
80
],
"editor.roundedSelection": false,
"editor.fontFamily": "'Source Code Variable', Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 16,
"editor.minimap.enabled": false,
"C_Cpp.clang_format_path": "/usr/local/bin/clang-format",
"C_Cpp.clang_format_style": "file",
"clang.cflags": [
"-std=c11",
"-Wall",
"-Wextra",
"-Werror",
"-pedantic"
],
"C_Cpp.default.includePath": [
"${default}",
"${workspaceRoot}/include",
"${workspaceRoot}/includes"
],
"C_Cpp.loggingLevel": "Warning",
"C_Cpp.default.intelliSenseMode": "clang-x64",
"clang-format.fallbackStyle": "WebKit",
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"workbench.colorTheme": "Tomorrow Night",
"ocaml.lintOnSave": true,
"ocaml.useOpamToResolve": true,
"workbench.statusBar.feedback.visible": false,
"git.confirmSync": false,
"git.autofetch": true,
"workbench.startupEditor": "newUntitledFile",
"[go]": {
"editor.formatOnSave": true
},
"go.lintTool": "gometalinter",
"go.lintFlags": [
"--config=~/.gometalinter"
],
"workbench.iconTheme": "material-icon-theme",
"python.autoComplete.addBrackets": true,
"window.zoomLevel": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment