Last active
March 4, 2024 10:09
-
-
Save siwalikm/910d1ca4711ab9344f13c3269f2ae159 to your computer and use it in GitHub Desktop.
Settings json as shown in https://www.youtube.com/watch?v=NgWr4ikzzgU
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
{ | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"editor.formatOnSave": true, | |
"workbench.colorTheme": "GitHub Dark Dimmed", | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "'JetBrains Mono', Menlo, Monaco, 'Courier New', monospace", | |
"editor.wordWrap": "on", | |
"workbench.sideBar.location": "right", | |
"editor.minimap.enabled": false, | |
"window.title": "${activeEditorMedium}${separator}${rootName}", | |
"github.copilot.enable": { | |
"*": true, | |
"yaml": false, | |
"plaintext": false, | |
"markdown": false | |
}, | |
"git.openDiffOnClick": false, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/Thumbs.db": true, | |
"**/node_modules": true | |
}, | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/*.code-search": true, | |
"**/public": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment