Created
May 24, 2022 00:00
-
-
Save lilymara-onesignal/770a29b254459ff2cde40cbf7528bb3d to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"rust-client.channel": "stable", | |
"ruby.lint": { | |
"rubocop": true | |
}, | |
"extensions.ignoreRecommendations": false, | |
"vim.useSystemClipboard": true, | |
"editor.minimap.enabled": false, | |
"editor.formatOnSaveTimeout": 100, | |
"files.trimTrailingWhitespace": true, | |
"files.autoSave": "onFocusChange", | |
"git.autofetch": true, | |
"git.confirmSync": false, | |
"workbench.startupEditor": "newUntitledFile", | |
"markdown-preview-enhanced.liveUpdate": true, | |
"go.formatTool": "goimports", | |
"go.useLanguageServer": true, | |
"go.gopath": "~/projects/", | |
"editor.acceptSuggestionOnEnter": "off", | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[toml]": { | |
"editor.formatOnSave": false | |
}, | |
"editor.fontFamily": "Monaco for Powerline, Monaco, 'Courier New', monospace", | |
"files.associations": { | |
"Cargo.lock": "toml" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[git-commit]": { | |
"editor.rulers": [ | |
50, | |
72 | |
], | |
"editor.wordWrapColumn": 72, | |
"workbench.editor.restoreViewState": false | |
}, | |
"terminal.integrated.rendererType": "dom", | |
"ruby.intellisense": "rubyLocate", | |
"ruby.useLanguageServer": true, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"python.pythonPath": "/usr/local/bin/python3", | |
"editor.suggestSelection": "first", | |
"tabnine.experimentalAutoImports": true, | |
"python.languageServer": "Pylance", | |
"liveshare.presence": true, | |
"jsonnet.libPaths": [], | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"python.showStartPage": false, | |
"workbench.editorAssociations": { | |
"*.ipynb": "jupyter-notebook" | |
}, | |
"todo-tree.tree.showCountsInTree": true, | |
"scm.inputFontFamily": "editor", | |
"projectManager.git.baseFolders": [ | |
"/Users/lily/projects/github.com/OneSignal" | |
], | |
"projectManager.git.maxDepthRecursion": 5, | |
"files.insertFinalNewline": true, | |
"extensions.confirmedUriHandlerExtensionIds": [], | |
"liveshare.authenticationProvider": "GitHub", | |
"go.toolsManagement.autoUpdate": true, | |
"redhat.telemetry.enabled": false, | |
"terminal.integrated.defaultProfile.osx": "nu", | |
"terminal.integrated.profiles.osx": { | |
"nu": { | |
"path": "/Users/lily/.cargo/bin/nu", | |
}, | |
}, | |
"editor.formatOnSave": true, | |
"python.defaultInterpreterPath": "/usr/local/bin/python3", | |
"todo-tree.general.tags": [ | |
"BUG", | |
"HACK", | |
"FIXME", | |
"TODO", | |
"XXX", | |
"todo!" | |
], | |
"jsonnet.executablePath": "/usr/local/bin/jsonnet", | |
"jsonnet.fmtExecutablePath": "/usr/local/bin/jsonnetfmt", | |
"remoteHub.search.download.enabled": true, | |
"notebook.cellToolbarLocation": { | |
"default": "right", | |
"jupyter-notebook": "left" | |
}, | |
"docker.showStartPage": false, | |
"[terraform]": { | |
"editor.defaultFormatter": "hashicorp.terraform", | |
}, | |
"[terraform-vars]": { | |
"editor.defaultFormatter": "hashicorp.terraform", | |
}, | |
"workbench.colorTheme": "nushell", | |
"rust-analyzer.cargo.buildScripts.enable": false, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment