Skip to content

Instantly share code, notes, and snippets.

@shravanasati
Last active June 10, 2021 15:39
Show Gist options
  • Save shravanasati/564a9526fe0b604d26529c7d18dae9d0 to your computer and use it in GitHub Desktop.
Save shravanasati/564a9526fe0b604d26529c7d18dae9d0 to your computer and use it in GitHub Desktop.
VS Code Settings
{
"workbench.iconTheme": "material-icon-theme",
"editor.mouseWheelZoom": true,
"files.autoSave": "afterDelay",
"editor.fontSize": 20,
"workbench.editorAssociations": [
{
"viewType": "jupyter.notebook.ipynb",
"filenamePattern": "*.ipynb"
}
],
"python.languageServer": "Pylance",
"editor.fontFamily": "JetBrains Mono, Fira Code, Cascadia Code, Consolas, 'Courier New', monospace",
"editor.fontLigatures": true,
"code-runner.runInTerminal": true,
"python.analysis.completeFunctionParens": true,
"git.enableSmartCommit": true,
"vim.handleKeys": {
"<C-f>": false,
"<C-h>": false,
"<C-c>": false,
"<C-v>": false,
"<C-x>": false
},
"vim.useSystemClipboard": true,
"editor.cursorSmoothCaretAnimation": true,
"code-runner.ignoreSelection": true,
"explorer.confirmDragAndDrop": false,
"workbench.colorTheme": "Dracula",
"editor.linkedEditing": true,
"liveServer.settings.donotShowInfoMsg": true,
"editor.wordWrap": "off",
"editor.cursorBlinking": "phase",
"liveServer.settings.donotVerifyTags": true,
"editor.multiCursorModifier": "ctrlCmd",
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"python.pythonPath": "/usr/bin/python3",
"editor.tabSize": 4,
"editor.cursorStyle": "line",
"editor.insertSpaces": false,
"editor.lineNumbers": "on",
"editor.wordSeparators": "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-",
"diffEditor.wordWrap": "on",
"editor.formatOnPaste": true,
"editor.formatOnSave": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment