Skip to content

Instantly share code, notes, and snippets.

@FFY00
Created September 8, 2018 21:02
Show Gist options
  • Save FFY00/211e27828482abb6f94bdaabfedcd93b to your computer and use it in GitHub Desktop.
Save FFY00/211e27828482abb6f94bdaabfedcd93b to your computer and use it in GitHub Desktop.
My VS Code settings
{
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Material Theme Darker",
"workbench.sideBar.location": "left",
"window.zoomLevel": -0.05,
"window.restoreWindows": "all",
"editor.fontFamily": "Source Code, Menlo, Monaco, Courier New, Monospace",
"editor.fontSize": 14,
"editor.detectIndentation": true,
"editor.lineHeight": 20,
"editor.rulers": [80],
"editor.fontLigatures": true,
"editor.renderWhitespace": "all",
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": false,
"editor.formatOnSave": false,
"files.autoSave": "afterDelay",
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"files.useExperimentalFileWatcher": true,
"files.exclude": {
"**/.dub": true,
},
"search.smartCase": true,
"markdown.preview.breaks": true,
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"materialTheme.accent": "Teal",
"materialTheme.fixIconsRunning": false,
"materialTheme.autoApplyIcons": false,
"materialTheme.showReloadNotification": false,
"material-icon-theme.hidesExplorerArrows": true,
"terminal.explorerKind": "external",
"terminal.external.linuxExec": "tilix",
"discord.lowerDetailsNotFound": "Figuring out what to do...",
"discord.detailsIdle": "Not doing anything.",
"discord.silent": true,
"discord.workspaceElapsedTime": true,
"d.betaStream": false,
"d.enableDMDImportTiming": false,
"d.aggressiveUpdate": false,
"d.argumentSnippets": true,
"dscanner.ignoredKeys": true,
"git.defaultCloneDirectory": "~/git/",
"python.autoComplete.addBrackets": true,
"python.autoComplete.showAdvancedMembers": true,
"python.linting.flake8Enabled": true,
"python.unitTest.pyTestEnabled": true,
"ruby.codeCompletion": true,
"ruby.format": true,
"ruby.intellisense": true,
"java.completion.guessMethodArguments": true,
"java.referencesCodeLens.enabled": true,
"java.saveActions.organizeImports": true,
"java.signatureHelp.enabled": true,
"code-runner.runInTerminal": true,
"auto-close-tag.activationOnLanguage": ["*"],
"cSpell.language": "en",
"cSpell.enabledLanguageIds": ["*"],
"npm.enableScriptExplorer": true,
"gitHistory.hideCommitViewExplorer": true,
"gitlens.keymap": "chorded",
"latex-workshop.view.pdf.viewer": "tab",
"eslint.autoFixOnSave": true,
"prettier.singleQuote": true,
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment