-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
99 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,85 +1,102 @@ | ||
{ | ||
"workbench.iconTheme": "vs-minimal", | ||
"gitlens.gitExplorer.enabled": false, | ||
"gitlens.codeLens.scopes": [ | ||
"document" | ||
], | ||
"workbench.statusBar.feedback.visible": false, | ||
"workbench.editor.highlightModifiedTabs": true, | ||
"workbench.startupEditor": "newUntitledFile", | ||
"files.insertFinalNewline": true, | ||
"files.trimTrailingWhitespace": true, | ||
"files.trimFinalNewlines": true, | ||
"search.exclude": { | ||
"**/node_modules": true, | ||
"**/bower_components": true, | ||
"**/vendor": true | ||
"workbench.iconTheme": "vs-minimal", | ||
"gitlens.codeLens.scopes": ["document"], | ||
"workbench.editor.highlightModifiedTabs": true, | ||
"workbench.startupEditor": "newUntitledFile", | ||
"files.insertFinalNewline": true, | ||
"files.trimTrailingWhitespace": true, | ||
"files.trimFinalNewlines": true, | ||
"search.exclude": { | ||
"**/.vs": true, | ||
"**/bower_components": true, | ||
"**/node_modules": true, | ||
"**/vendor": true | ||
}, | ||
"extensions.ignoreRecommendations": true, | ||
"gitlens.keymap": "chorded", | ||
"gitlens.advanced.messages": { | ||
"suppressCommitHasNoPreviousCommitWarning": false, | ||
"suppressCommitNotFoundWarning": false, | ||
"suppressFileNotUnderSourceControlWarning": true, | ||
"suppressGitVersionWarning": false, | ||
"suppressLineUncommittedWarning": false, | ||
"suppressNoRepositoryWarning": false | ||
}, | ||
"search.followSymlinks": false, | ||
"window.clickThroughInactive": false, | ||
"files.exclude": { | ||
"**/__pycache__": true, | ||
"**/*.pyc": true | ||
}, | ||
"editor.fontFamily": "FiraCode-Retina, Fira Code, Menlo, Monaco, 'Courier New', monospace", | ||
"editor.fontLigatures": true, | ||
"editor.acceptSuggestionOnEnter": "off", | ||
"editor.cursorStyle": "block", | ||
"editor.cursorBlinking": "solid", | ||
"editor.renderWhitespace": "none", | ||
"editor.semanticHighlighting.enabled": true, | ||
"[typescript]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"terraform.indexing": { | ||
"enabled": false, | ||
"liveIndexing": false, | ||
"delay": 500, | ||
"exclude": [".terraform/**/*", "**/.terraform/**/*"] | ||
}, | ||
"terraform.languageServer": { | ||
"external": true | ||
}, | ||
"editor.formatOnSave": true, | ||
"[typescriptreact]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"python.venvFolders": ["/Users/aburgel/Library/Caches/pypoetry/virtualenvs/"], | ||
"[jsonc]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[json]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[javascript]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"[python]": { | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": "explicit" | ||
}, | ||
"extensions.ignoreRecommendations": true, | ||
"gitlens.keymap": "chorded", | ||
"gitlens.advanced.messages": { | ||
"suppressCommitHasNoPreviousCommitWarning": false, | ||
"suppressCommitNotFoundWarning": false, | ||
"suppressFileNotUnderSourceControlWarning": true, | ||
"suppressGitVersionWarning": false, | ||
"suppressLineUncommittedWarning": false, | ||
"suppressNoRepositoryWarning": false, | ||
"suppressResultsExplorerNotice": false, | ||
"suppressShowKeyBindingsNotice": true | ||
}, | ||
"gitlens.historyExplorer.enabled": true, | ||
"search.followSymlinks": false, | ||
"window.zoomLevel": 0, | ||
"gitlens.views.repositories.enabled": false, | ||
"gitlens.views.fileHistory.enabled": true, | ||
"gitlens.views.lineHistory.enabled": true, | ||
"window.clickThroughInactive": false, | ||
"files.exclude": { | ||
"**/__pycache__": true, | ||
"**/*.pyc": true | ||
}, | ||
"editor.fontFamily": "FiraCode-Retina, Fira Code, Menlo, Monaco, 'Courier New', monospace", | ||
"editor.fontLigatures": true, | ||
"editor.acceptSuggestionOnEnter": "off", | ||
"gitlens.views.repositories.location": "scm", | ||
"gitlens.views.fileHistory.location": "scm", | ||
"gitlens.views.lineHistory.location": "scm", | ||
"gitlens.views.compare.location": "scm", | ||
"gitlens.views.search.location": "scm", | ||
"editor.cursorStyle": "block", | ||
"editor.cursorBlinking": "solid", | ||
"editor.renderWhitespace": "all", | ||
"[typescript]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
}, | ||
"editor.multiCursorModifier": "ctrlCmd", | ||
"terraform.indexing": { | ||
"enabled": false, | ||
"liveIndexing": false, | ||
"delay": 500, | ||
"exclude": [ | ||
".terraform/**/*", | ||
"**/.terraform/**/*" | ||
] | ||
}, | ||
"terraform.languageServer": { | ||
"enabled": true, | ||
"args": [] | ||
}, | ||
"[dart]": { | ||
"editor.formatOnSave": true, | ||
"editor.formatOnType": true, | ||
"editor.rulers": [ | ||
80 | ||
], | ||
"editor.selectionHighlight": false, | ||
"editor.suggest.snippetsPreventQuickSuggestions": false, | ||
"editor.suggestSelection": "first", | ||
"editor.tabCompletion": "onlySnippets", | ||
"editor.wordBasedSuggestions": false | ||
}, | ||
"editor.formatOnSave": true, | ||
"[typescriptreact]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
} | ||
"editor.formatOnType": true, | ||
"editor.defaultFormatter": "charliermarsh.ruff" | ||
}, | ||
"python.testing.autoTestDiscoverOnSaveEnabled": false, | ||
"omnisharp.analyzeOpenDocumentsOnly": true, | ||
"omnisharp.enableImportCompletion": true, | ||
"omnisharp.enableRoslynAnalyzers": true, | ||
"lldb.library": "/Applications/Xcode.app/Contents/SharedFrameworks/LLDB.framework/Versions/A/LLDB", | ||
"githubPullRequests.pullBranch": "never", | ||
"terraform.codelens.referenceCount": true, | ||
"python.analysis.autoImportCompletions": true, | ||
"python.analysis.completeFunctionParens": true, | ||
"rubyLsp.enabledFeatures": { | ||
"codeActions": true, | ||
"diagnostics": true, | ||
"documentHighlights": true, | ||
"documentLink": true, | ||
"documentSymbols": true, | ||
"foldingRanges": true, | ||
"formatting": true, | ||
"hover": true, | ||
"inlayHint": true, | ||
"onTypeFormatting": true, | ||
"selectionRanges": true, | ||
"semanticHighlighting": true, | ||
"completion": true, | ||
"codeLens": false | ||
}, | ||
"rubyLsp.rubyVersionManager": "asdf", | ||
"rubyLsp.enableExperimentalFeatures": true, | ||
"prettier.singleQuote": true, | ||
"yaml.format.singleQuote": true, | ||
"git.openRepositoryInParentFolders": "never", | ||
"security.promptForLocalFileProtocolHandling": false | ||
} |