Skip to content

Instantly share code, notes, and snippets.

@fhilipecrash
Last active May 27, 2022 14:29
Show Gist options
  • Save fhilipecrash/2c2061ed72b92748c0a09c8903e51f14 to your computer and use it in GitHub Desktop.
Save fhilipecrash/2c2061ed72b92748c0a09c8903e51f14 to your computer and use it in GitHub Desktop.
VS Code configuration
{
"workbench.colorTheme": "One Dark Pro Darker",
"workbench.editor.untitled.hint": "hidden",
"workbench.startupEditor": "none",
"workbench.iconTheme": "material-icon-theme",
"git.confirmSync": false,
"gitlens.codeLens.enabled": false,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"liveServer.settings.donotVerifyTags": true,
"liveServer.settings.donotShowInfoMsg": true,
"csharp.referencesCodeLens.enabled": false,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"extensions.ignoreRecommendations": false,
"window.titleBarStyle": "custom",
"dart.sdkPath": "~/.asdf/installs/dart/2.16.2/dart-sdk/bin",
"python.defaultInterpreterPath": "~/.asdf/shims/python",
"python.languageServer": "Default",
"powershell.integratedConsole.showOnStartup": false,
"terminal.integrated.fontFamily": "'Sarasa Mono K Nerd Font'",
"terminal.integrated.fontWeight": "normal",
"terminal.integrated.fontSize": 14,
"terminal.integrated.persistentSessionReviveProcess": "never",
"terminal.integrated.enablePersistentSessions": false,
"security.workspace.trust.banner": "always",
"oneDarkPro.vivid": true,
"files.autoSave": "afterDelay",
"editor.fontFamily": "'JetBrainsMono Nerd Font'",
"editor.wordWrap": "on",
"editor.fontLigatures": true,
"editor.linkedEditing": true,
"editor.colorDecorators": false,
"editor.suggestSelection": "first",
"editor.formatOnSave": false,
"editor.detectIndentation": true,
"editor.insertSpaces": true,
"editor.tabSize": 2,
"[c]": {
"editor.tabSize": 4
},
"[csharp]": {
"editor.tabSize": 4
},
"[python]": {
"editor.tabSize": 4
},
"[php]": {
"editor.tabSize": 4,
},
"[shellscript]": {
"editor.tabSize": 4
},
"[powershell]": {
"editor.tabSize": 4
},
"[makefile]": {
"editor.tabSize": 4
},
"[dart]": {
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.selectionHighlight": false,
"editor.suggest.snippetsPreventQuickSuggestions": false,
"editor.suggestSelection": "first",
"editor.tabCompletion": "onlySnippets",
"editor.wordBasedSuggestions": false,
},
"code-runner.runInTerminal": true,
"code-runner.executorMap": {
"python": "~/.asdf/shims/python",
"dart": "~/.asdf/shims/dart",
"node": "~/.asdf/shims/node",
"c": "cd $dir && gcc $fileName -o $fileNameWithoutExt.o && $dir$fileNameWithoutExt.o"
},
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true,
"**/node_modules": true,
"**/.vscode": true,
"**/*.o": true
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment