Skip to content

Instantly share code, notes, and snippets.

@mani-barathi
Created May 27, 2025 15:40
Show Gist options
  • Save mani-barathi/47d03c49c87a5cec0b9ef0af5e839383 to your computer and use it in GitHub Desktop.
Save mani-barathi/47d03c49c87a5cec0b9ef0af5e839383 to your computer and use it in GitHub Desktop.
vs code settings
{
"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