Last active
November 4, 2024 08:08
-
-
Save hmtri1011/434976b786a69ebad5f75174d538c128 to your computer and use it in GitHub Desktop.
VS Code settings
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
{ | |
"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 | |
}, | |
"[javascript]": { | |
"editor.tabSize": 2 | |
}, | |
"[javascriptreact]": { | |
"editor.tabSize": 2, | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescriptreact]": { | |
"editor.tabSize": 2, | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescript]": { | |
"editor.tabSize": 2, | |
// "editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.defaultFormatter": "biomejs.biome" | |
}, | |
"[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, | |
"github.copilot.enable": { | |
"*": true, | |
"plaintext": true, | |
"markdown": false, | |
"scminput": false | |
}, | |
"security.workspace.trust.untrustedFiles": "open", | |
"editor.stickyScroll.enabled": true, | |
"vim.smartRelativeLine": true, | |
"prisma.showPrismaDataPlatformNotification": false, | |
"git.openRepositoryInParentFolders": "never", | |
"github.copilot.editor.enableAutoCompletions": true, | |
"cursor.cpp.disabledLanguages": ["markdown", "scminput"], | |
"workbench.activityBar.orientation": "vertical", | |
"git.autofetch": true, | |
"diffEditor.ignoreTrimWhitespace": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment