Skip to content

Instantly share code, notes, and snippets.

@hmtri1011
Last active June 15, 2023 04:12
Show Gist options
  • Save hmtri1011/434976b786a69ebad5f75174d538c128 to your computer and use it in GitHub Desktop.
Save hmtri1011/434976b786a69ebad5f75174d538c128 to your computer and use it in GitHub Desktop.
VS Code settings
{
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"workbench.colorTheme": "Night Owl",
"workbench.iconTheme": "material-icon-theme",
"editor.fontFamily": "Dank Mono",
"editor.fontWeight": "300",
"editor.fontSize": 15.8,
"editor.lineHeight": 1.8,
"editor.fontLigatures": true,
"editor.formatOnSave": true,
"editor.gotoLocation.multipleDefinitions": "goto",
"editor.gotoLocation.multipleReferences": "goto",
"editor.gotoLocation.multipleTypeDefinitions": "goto",
"editor.gotoLocation.multipleImplementations": "goto",
"terminal.integrated.fontFamily": "FiraCode Nerd Font",
"terminal.integrated.fontWeightBold": "500",
"terminal.integrated.fontSize": 14,
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"],
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
// "**/node_modules": true,
// "**/public": true
},
"[javascript]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.tabSize": 2
},
"[typescriptreact]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"prettier.tabWidth": 2,
"prettier.printWidth": 120,
"prettier.semi": false,
"prettier.jsxSingleQuote": true,
"prettier.singleQuote": true,
"prettier.arrowParens": "avoid",
"prettier.trailingComma": "none",
"editor.minimap.enabled": false,
"workbench.colorCustomizations": {},
"editor.inlineSuggest.enabled": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment