Last active
July 30, 2021 15:01
-
-
Save nascarsayan/58f52c19c6dfbe44aaea7d4088dc9843 to your computer and use it in GitHub Desktop.
VSCode Settings
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
| { | |
| "editor.fontFamily": "Jetbrains Mono", | |
| "editor.fontLigatures": true, | |
| "editor.tabSize": 2, | |
| "workbench.tree.indent": 4, | |
| "atomKeymap.promptV3Features": true, | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "workbench.iconTheme": "vscode-icons", | |
| "go.formatTool": "goimports", | |
| "debug.console.fontFamily": "JetBrainsMono NF", | |
| "debug.console.fontSize": 12, | |
| "terminal.integrated.fontFamily": "JetBrainsMono NF", | |
| "editor.fontWeight": "normal", | |
| "terminal.integrated.fontWeightBold": "200", | |
| "editor.minimap.enabled": false, | |
| "better-comments.tags": [ | |
| { | |
| "tag": "!", | |
| "color": "#FF2D00", | |
| "strikethrough": false, | |
| "underline": false, | |
| "backgroundColor": "transparent", | |
| "bold": false, | |
| "italic": false | |
| }, | |
| { | |
| "tag": "?", | |
| "color": "#3498DB", | |
| "strikethrough": false, | |
| "underline": false, | |
| "backgroundColor": "transparent", | |
| "bold": false, | |
| "italic": false | |
| }, | |
| { | |
| "tag": "//", | |
| "color": "#474747", | |
| "strikethrough": true, | |
| "underline": false, | |
| "backgroundColor": "transparent", | |
| "bold": false, | |
| "italic": false | |
| }, | |
| { | |
| "tag": "todo", | |
| "color": "#FF8C00", | |
| "strikethrough": false, | |
| "underline": false, | |
| "backgroundColor": "transparent", | |
| "bold": false, | |
| "italic": false | |
| }, | |
| { | |
| "tag": "*", | |
| "color": "#98C379", | |
| "strikethrough": false, | |
| "underline": false, | |
| "backgroundColor": "transparent", | |
| "bold": false, | |
| "italic": false | |
| }, | |
| { | |
| "tag": "+", | |
| "color": "#EAF622", | |
| "strikethrough": false, | |
| "underline": false, | |
| "backgroundColor": "transparent", | |
| "bold": false, | |
| "italic": false | |
| } | |
| ], | |
| // "vsicons.associations.folderDefault.folder": { | |
| // "icon": "blueFolder", | |
| // "format": "svg" | |
| // }, | |
| // "vsicons.associations.folderDefault.root_folder": { | |
| // "icon": "rootBlueFolder", | |
| // "format": "svg" | |
| // }, | |
| "leetcode.workspaceFolder": "/Users/nascarsayan/Code/goforces/leetcode", | |
| "leetcode.defaultLanguage": "golang", | |
| "leetcode.hint.configWebviewMarkdown": false, | |
| "leetcode.hint.commentDescription": false, | |
| "leetcode.hint.commandShortcut": false, | |
| "leetcode.showDescription": "In File Comment", | |
| "licenser.author": "Sayan Naskar <[email protected]>", | |
| "code-runner.executorMap": { | |
| "cpp": "cd $dir && g++ $fileName --std=c++17 -lm -o $fileNameWithoutExt && $dir$fileNameWithoutExt && rm $dir$fileNameWithoutExt", | |
| }, | |
| "C_Cpp.default.cppStandard": "c++17", | |
| "rest-client.previewOption": "exchange", | |
| "python.languageServer": "Pylance", | |
| "python.formatting.provider": "black", | |
| "python.formatting.blackArgs": [ | |
| "--skip-string-normalization" | |
| ], | |
| // "python.linting.flake8Enabled": true, | |
| // "python.linting.flake8Args": [ | |
| // "--ignore=E203", | |
| // "--ignore=E266", | |
| // "--ignore=E501", | |
| // "--ignore=W503", | |
| // "--max-line-length=88", | |
| // "--select = B,C,E,F,W,T4,B9", | |
| // "--max-complexity = 18" | |
| // ], | |
| "gitlens.codeLens.enabled": false, | |
| "editor.formatOnPaste": true, | |
| "C_Cpp.updateChannel": "Insiders", | |
| "[python]": { | |
| "editor.formatOnPaste": false | |
| }, | |
| "editor.accessibilitySupport": "off", | |
| "shellformat.flag": "-fn", | |
| "shellformat.path": "/Users/nascarsayan/.gvm/pkgsets/go1.14.7/global/bin/shfmt", | |
| "[json]": { | |
| "editor.defaultFormatter": "vscode.json-language-features" | |
| }, | |
| "rest-client.previewResponseInUntitledDocument": true, | |
| "rest-client.fontFamily": "Jetbrains Mono", | |
| "editor.wordWrap": "on", | |
| "[jsonc]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "editor.rulers": [ | |
| 110 | |
| ], | |
| "workbench.editorAssociations": { | |
| "*.ipynb": "jupyter-notebook" | |
| }, | |
| "terminal.integrated.automationShell.linux": "/usr/bin/zsh", | |
| "editor.fontSize": 12, | |
| "rest-client.fontSize": 12, | |
| "vs-kubernetes": { | |
| "vscode-kubernetes.minikube-path.linux": "/home/snaskar/.vs-kubernetes/tools/minikube/linux-amd64/minikube", | |
| "vs-kubernetes.knownKubeconfigs": [ | |
| "/home/snaskar/.kube/config.d/v134", | |
| "/home/snaskar/.kube/config.d/cce2e", | |
| "/home/snaskar/.kube/config.d/kind", | |
| "/home/snaskar/.kube/config", | |
| "/home/snaskar/.kube/config.d/10.184.110.7", | |
| "/home/snaskar/.kube/config.d/10.150.220.219" | |
| ], | |
| "vs-kubernetes.kubeconfig": "/home/snaskar/.kube/config.d/10.150.220.219" | |
| }, | |
| "go.toolsManagement.autoUpdate": true, | |
| "go.lintTool": "golangci-lint", | |
| "gitlens.views.searchAndCompare.files.layout": "tree", | |
| "editor.inlineHints.fontFamily": "Jetbrains Mono", | |
| "tabnine.experimentalAutoImports": true, | |
| "security.workspace.trust.untrustedFiles": "open", | |
| "workbench.colorTheme": "Dracula", | |
| "redhat.telemetry.enabled": true, | |
| "cSpell.userWords": [ | |
| "VM's", | |
| "azdo", | |
| "goimports", | |
| "golangci", | |
| "luns" | |
| ], | |
| "notebook.cellToolbarLocation": { | |
| "default": "right", | |
| "jupyter-notebook": "right" | |
| }, | |
| "remote.SSH.remotePlatform": { | |
| "v184": "windows", | |
| "nixbox": "linux", | |
| "nixbox2": "linux", | |
| "10.184.110.4": "linux", | |
| "msbox": "windows" | |
| }, | |
| "powershell.powerShellDefaultVersion": "Windows PowerShell (x64)", | |
| "search.exclude": { | |
| "**/*.log": true | |
| }, | |
| "jupyter.askForKernelRestart": false, | |
| "terminal.integrated.fontSize": 13, | |
| "[powershell]": { | |
| "debug.saveBeforeStart": "nonUntitledEditorsInActiveGroup", | |
| "editor.semanticHighlighting.enabled": false, | |
| "editor.wordSeparators": "`~!@#$%^&*()=+[{]}\\|;:'\",.<>/?" | |
| }, | |
| "security.workspace.trust.enabled": false, | |
| "[yaml]": { | |
| "editor.defaultFormatter": "redhat.vscode-yaml" | |
| }, | |
| "editor.largeFileOptimizations": false, | |
| "[typescript]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "[typescriptreact]": { | |
| "editor.defaultFormatter": "esbenp.prettier-vscode" | |
| }, | |
| "cSpell.enabledLanguageIds": [ | |
| "asciidoc", | |
| "c", | |
| "cpp", | |
| "csharp", | |
| "css", | |
| "git-commit", | |
| "go", | |
| "graphql", | |
| "handlebars", | |
| "haskell", | |
| "html", | |
| "jade", | |
| "java", | |
| "javascript", | |
| "javascriptreact", | |
| "jsonc", | |
| "latex", | |
| "less", | |
| "php", | |
| "python", | |
| "pug", | |
| "restructuredtext", | |
| "rust", | |
| "scala", | |
| "scss", | |
| "typescript", | |
| "typescriptreact", | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment