dotfiles/files/vscode-settings.json

81 lines
3.0 KiB
JSON
Raw Permalink Normal View History

2018-02-19 13:39:25 +00:00
{
2018-03-16 13:30:52 +00:00
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": false,
"workbench.colorTheme": "Darcula",
"workbench.iconTheme": "material-icon-theme",
2021-11-07 21:54:31 +00:00
"telemetry.telemetryLevel": "off",
2018-03-16 13:30:52 +00:00
"extensions.autoUpdate": false,
"gitlens.currentLine.enabled": false,
"gitlens.hovers.currentLine.over": "line",
"gitlens.codeLens.enabled": false,
2019-05-11 16:56:09 +01:00
"workbench.activityBar.visible": true,
2018-03-16 13:30:52 +00:00
"editor.fontSize": 14,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"auto-close-tag.SublimeText3Mode": true,
"python.linting.lintOnSave": true,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
2018-04-06 21:22:03 +01:00
},
2018-04-06 22:15:23 +01:00
"gitlens.keymap": "alternate",
"editor.cursorBlinking": "smooth",
"editor.smoothScrolling": true,
"workbench.editor.enablePreview": false,
"terminal.integrated.enableBell": true,
2023-07-25 11:30:41 +01:00
"terminal.integrated.scrollback": 20000,
2018-04-06 22:15:23 +01:00
"git.enableCommitSigning": true,
2018-05-27 17:00:08 +01:00
"python.linting.mypyEnabled": true,
2019-08-04 21:06:48 +01:00
"python.linting.flake8Enabled": true,
"python.linting.pylintEnabled": false,
"python.terminal.activateEnvironment": false,
"python.venvPath": "~/.virtualenvs, ~/.pyenv, ~/.cache/pypoetry/virtualenvs",
2019-05-11 16:56:09 +01:00
"editor.fontFamily": "Fira Code",
"editor.minimap.renderCharacters": false,
"editor.cursorSmoothCaretAnimation": true,
"workbench.settings.enableNaturalLanguageSearch": false,
"cSpell.language": "en-GB",
"files.autoGuessEncoding": true,
"workbench.startupEditor": "none",
"extensions.ignoreRecommendations": true,
"workbench.enableExperiments": false,
"update.mode": "none",
2019-10-29 16:30:14 +00:00
"color-highlight.markerType": "underline",
"git-graph.showStatusBarItem": false,
2020-06-09 15:18:53 +01:00
"python.languageServer": "Jedi",
2021-11-07 21:54:31 +00:00
"python.experiments.enabled": false,
"terminal.integrated.enablePersistentSessions": false,
"editor.bracketPairColorization.enabled": false,
"ltex.additionalRules.motherTongue": "en-GB",
"ltex.java.initialHeapSize": 32,
"ltex.java.maximumHeapSize": 128,
"ltex.language": "en-GB",
2023-07-25 11:38:09 +01:00
"ltex.sentenceCacheSize": 1000,
"gitlens.remotes": [
{ "domain": "git.torchbox.com", "type": "GitLab" },
{ "domain": "git.theorangeone.net", "type": "Gitea" }
],
"rust-analyzer.inlayHints.chainingHints.enable": false,
"rust-analyzer.inlayHints.parameterHints.enable": false,
"rust-analyzer.inlayHints.typeHints.enable": false,
2023-07-25 11:45:45 +01:00
"workbench.preferredDarkColorTheme": "Darcula",
2023-07-25 12:19:44 +01:00
"workbench.preferredLightColorTheme": "Visual Studio Light",
"workbench.tree.indent": 6,
"workbench.editor.closeOnFileDelete": true,
"zenMode.hideTabs": false,
"zenMode.hideLineNumbers": false,
"explorer.autoRevealExclude": {
"**/bower_components": false,
"**/node_modules": false
},
"search.useGlobalIgnoreFiles": true,
"search.useParentIgnoreFiles": true,
"remote.downloadExtensionsLocally": true
}