Created
November 1, 2021 08:27
-
-
Save sreeram-venkitesh/e37484440da42b606dad7313e97dd6a1 to your computer and use it in GitHub Desktop.
VSCode settings.json
This file contains 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
{ | |
"files.autoSave": "afterDelay", | |
"explorer.confirmDelete": false, | |
//Enabled to automatically run prettier on js files when saved | |
"[javascript]": { | |
"editor.formatOnSave": true | |
}, | |
"workbench.iconTheme": "helium-icon-theme", | |
"editor.tabSize": 2, | |
"editor.renderWhitespace": "all", | |
// "editor.fontFamily": "Fira Code", | |
// "editor.fontLigatures": true, | |
"[jsonc]": { | |
"editor.quickSuggestions": { | |
"strings": true | |
}, | |
"editor.suggest.insertMode": "replace" | |
}, | |
"workbench.sideBar.location": "right", | |
"workbench.editor.untitled.hint": "hidden", | |
"[javascriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"files.associations": { | |
"*.js": "javascriptreact" | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"redhat.telemetry.enabled": true, | |
"editor.fontSize": 13, | |
"editor.minimap.enabled": false, | |
"workbench.colorTheme": "Tokyo Night", | |
"vim.autoindent": false, | |
"vim.startofline": false, | |
"vim.vimrc.path": "$HOME/.vimrc", | |
"liveServer.settings.donotShowInfoMsg": true, | |
"vim.vimrc.enable": true, | |
"diffEditor.ignoreTrimWhitespace": false, | |
"ruby.rubocop.useBundler": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment