Last active
February 16, 2025 08:06
-
-
Save nishantbadhautiya/63257890a8eab85dba6497ce411ae195 to your computer and use it in GitHub Desktop.
my VS Code setting.json
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
| { | |
| "code-runner.runInTerminal": true, | |
| "code-runner.saveAllFilesBeforeRun": true, | |
| "code-runner.saveFileBeforeRun": true, | |
| "files.autoSave": "afterDelay", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "editor.wordWrap": "on", | |
| "liveServer.settings.donotShowInfoMsg": true, | |
| "editor.mouseWheelZoom": true, | |
| "editor.bracketPairColorization.enabled": true, | |
| "editor.guides.bracketPairs": true, | |
| "editor.fontFamily": "'cascadia code',Consolas, 'Courier New', monospace", | |
| "editor.stickyScroll.enabled": false, | |
| "code-runner.executorMap": { | |
| "python": "python3" | |
| }, | |
| "workbench.editor.empty.hint": "hidden", | |
| "editor.fontSize": 18, | |
| "notebook.cellToolbarVisibility": "hover", | |
| // ***** For VIM setup ***** | |
| /*"security.workspace.trust.untrustedFiles": "open", | |
| "vim.insertModeKeyBindings": [{ | |
| "before": ["j", "k"], | |
| "after": ["<Esc>"] | |
| } | |
| ], | |
| "editor.lineNumbers": "relative", | |
| */ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment