Created
May 27, 2025 15:40
-
-
Save mani-barathi/47d03c49c87a5cec0b9ef0af5e839383 to your computer and use it in GitHub Desktop.
vs code 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
{ | |
"vim.insertModeKeyBindings": [{ "before": ["j", "k"], "after": ["<esc>"] }], | |
"vim.easymotion": true, | |
"vim.incsearch": true, | |
"vim.useSystemClipboard": true, | |
"vim.useCtrlKeys": true, | |
// "vim.hlsearch": true, | |
"files.exclude": { | |
"**/.DS_Store": true, | |
"**/.git": true, | |
"**/.hg": true, | |
"**/.svn": true, | |
"**/CVS": true, | |
"**/node_modules/": true, | |
"**/venv/": true | |
}, | |
"search.exclude": { | |
"**/venv/": true | |
}, | |
"editor.formatOnSave": true, | |
"editor.formatOnPaste": true, | |
"editor.cursorStyle": "line", | |
"editor.wordSeparators": "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-", | |
"editor.wordWrap": "off", | |
"editor.minimap.renderCharacters": false, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"workbench.startupEditor": "newUntitledFile", | |
"extensions.ignoreRecommendations": true, | |
"[html]": { | |
"editor.defaultFormatter": "vscode.html-language-features" | |
}, | |
"css.lint.argumentsInColorFunction": "ignore", | |
"css.lint.unknownAtRules": "ignore", | |
"js/ts.implicitProjectConfig.checkJs": false, | |
"javascript.preferences.importModuleSpecifier": "relative", | |
"typescript.preferences.importModuleSpecifier": "relative", | |
"liveServer.settings.donotShowInfoMsg": true, | |
"liveServer.settings.donotVerifyTags": true, | |
"js/ts.implicitProjectConfig.strictFunctionTypes": false, | |
"editor.lineNumbers": "on", | |
"editor.minimap.enabled": false, | |
"[python]": { | |
"editor.defaultFormatter": "ms-python.python", | |
"editor.tabSize": 4, | |
"editor.formatOnType": true | |
}, | |
"editor.tabSize": 2, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"[java]": { | |
"editor.defaultFormatter": "redhat.java" | |
}, | |
"editor.accessibilitySupport": "off", | |
"[css]": { | |
"editor.defaultFormatter": "vscode.css-language-features" | |
}, | |
"workbench.editor.empty.hint": "hidden" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment