Last active
July 3, 2023 18:58
-
-
Save pratikdevdas/e6217c90352f5cb2567f08d557fb8c36 to your computer and use it in GitHub Desktop.
Vscode settings 2023 - July
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
// Place your key bindings in this file to override the defaultsauto[] | |
[ | |
{ | |
"key": "ctrl+shift+q", | |
"command": "workbench.action.terminal.kill" | |
}, | |
{ | |
"key": "ctrl+shift+alt+n", | |
"command": "explorer.newFolder", | |
"when": "explorerViewletFocus" | |
}, | |
{ | |
"key": "ctrl+n", | |
"command": "explorer.newFile" | |
}, | |
{ | |
"key": "ctrl+tab", | |
"command": "workbench.action.nextEditor" | |
}, | |
{ | |
"key": "ctrl+shift+tab", | |
"command": "workbench.action.previousEditor" | |
} | |
] |
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
{ | |
"explorer.confirmDelete": false, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"liveServer.settings.donotVerifyTags": true, | |
"files.associations": { | |
"*.js": "javascript" | |
}, | |
"git.enableSmartCommit": true, | |
"terminal.integrated.tabs.enabled": true, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"files.exclude": { | |
"**/.classpath": true, | |
"**/.project": true, | |
"**/.settings": true, | |
"**/.factorypath": true | |
}, | |
"eslint.format.enable": true, | |
"gitlens.advanced.messages": { | |
"suppressGitMissingWarning": true, | |
"suppressImproperWorkspaceCasingWarning": true | |
}, | |
"explorer.confirmDragAndDrop": false, | |
"thunder-client.codeSnippetLanguage": "cs-httpclient", | |
"terminal.integrated.defaultProfile.windows": "Git Bash", | |
"workbench.iconTheme": "bearded-icons", | |
"emmet.includeLanguages": { | |
"vue-html": "html", | |
"javascript": "javascriptreact" | |
}, | |
"editor.smoothScrolling": true, | |
"editor.cursorSmoothCaretAnimation": "on", | |
"editor.cursorBlinking": "expand", | |
"workbench.colorCustomizations": { | |
"editorCursor.foreground": "#ffff00", | |
"terminalCursor.foreground": "#ffff00" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "vscode.html-language-features" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"editor.fontSize": 16, | |
"liveSassCompile.settings.formats": [ | |
{ | |
"format": "expanded", | |
"extensionName": ".css", | |
"savePath": "/dist/css" | |
} | |
], | |
"vscode-edge-devtools.mirrorEdits": true, | |
"vscode-edge-devtools.fallbackRevision": "@a1c1ea02160226bf4a0831a74f06de8edf55ffcf", | |
"editor.accessibilitySupport": "off", | |
"vscode-edge-devtools.webhint": false, | |
"security.workspace.trust.untrustedFiles": "newWindow", | |
"[css]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[markdown]": { | |
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint" | |
}, | |
"[javascriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"npm.keybindingsChangedWarningShown": true, | |
"[java]": { | |
"editor.defaultFormatter": "redhat.java" | |
}, | |
"git.ignoreRebaseWarning": true, | |
"debug.onTaskErrors": "debugAnyway", | |
"githubPullRequests.createOnPublishBranch": "never", | |
"editor.inlineSuggest.enabled": true, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"[typescript]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"gitlens.gitCommands.skipConfirmations": [ | |
"fetch:command", | |
"stash-push:command", | |
"push:command" | |
], | |
"tailwindCSS.includeLanguages": { | |
"html": "html", | |
"javascript": "javascript", | |
"css": "css" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"workbench.colorTheme": "Bearded Theme Black & Ruby", | |
"editor.wordWrap": "on", | |
"editor.insertSpaces": false, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"git.confirmSync": false, | |
"githubPullRequests.fileListLayout": "flat", | |
"cSpell.userWords": [ | |
"Formik" | |
], | |
"[yaml]": { | |
"editor.defaultFormatter": "redhat.vscode-yaml", | |
}, | |
"github.copilot.enable": { | |
"*": false, | |
"yaml": false, | |
"plaintext": false, | |
"markdown": false | |
}, | |
"terminal.integrated.persistentSessionScrollback": 10000, | |
"terminal.integrated.scrollback": 100000, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment