dotfiles/modules/config/files/vscode-settings.json

68 lines
2.3 KiB
JSON
Raw Normal View History

2018-02-19 13:39:25 +00:00
{
2018-03-16 13:30:52 +00:00
"workbench.statusBar.feedback.visible": false,
"sublimeTextKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": false,
"workbench.colorTheme": "Darcula",
"workbench.iconTheme": "material-icon-theme",
"telemetry.enableCrashReporter": true,
"telemetry.enableTelemetry": false,
"update.channel": "none",
"extensions.autoUpdate": false,
"window.zoomLevel": 0,
"gitlens.currentLine.enabled": false,
"gitlens.hovers.currentLine.over": "line",
"scss.scannerExclude": [
"**/.git",
"**/bower_components"
],
"less.scannerExclude": [
"**/.git",
"**/bower_components"
],
"python.workspaceSymbols.exclusionPatterns": [],
"gitlens.codeLens.enabled": false,
"npm.validate.enable": false,
"workbench.activityBar.visible": false,
"editor.fontSize": 14,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"auto-close-tag.SublimeText3Mode": true,
"python.pythonPath": "${workspaceRoot}/env/bin/python",
"python.linting.flake8Enabled": true,
"python.linting.flake8Path": "${workspaceRoot}/env/bin/flake8",
"python.linting.pylintEnabled": false,
"python.linting.flake8Args": [
"--ignore=E501"
],
"python.linting.lintOnSave": true,
2018-03-21 18:17:48 +00:00
"rust.rustup": {
"toolchain": "stable-x86_64-unknown-linux-gnu"
},
2018-03-25 21:36:27 +01:00
"rust.mode": "rls",
2018-04-06 08:59:44 +01:00
"latex-workshop.latex.autoBuild.onSave.enabled": false,
"terminal.integrated.setLocaleVariables": true,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
2018-04-06 21:22:03 +01:00
},
2018-04-06 22:15:23 +01:00
"gitlens.keymap": "alternate",
"editor.cursorBlinking": "smooth",
"editor.fontLigatures": true,
"editor.smoothScrolling": true,
"workbench.editor.enablePreview": false,
"terminal.integrated.enableBell": true,
"terminal.integrated.fontSize": 14,
"terminal.integrated.scrollback": 2000,
"git.enableCommitSigning": true,
"python.linting.mypyEnabled": true
}