Skip to content

Instantly share code, notes, and snippets.

@icaroharry
Created June 12, 2024 01:24
Show Gist options
  • Save icaroharry/276478226f70fcaa55ad75e77bd66468 to your computer and use it in GitHub Desktop.
Save icaroharry/276478226f70fcaa55ad75e77bd66468 to your computer and use it in GitHub Desktop.
{
"workbench.colorTheme": "Nord",
"editor.mouseWheelZoom": true,
"editor.renderWhitespace": "all",
"editor.fontFamily": "'monospace', 'Cascadia Code', 'Inconsolata', 'Fira Code', 'Monoid', 'Droid Sans Mono', monospace, 'Droid Sans Fallback'",
"editor.fontLigatures": true,
"eslint.validate": [
"vue",
"html",
"javascript",
"typescript",
"javascriptreact",
"typescriptreact"
],
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"editor.tabSize": 2,
"javascript.updateImportsOnFileMove.enabled": "always",
"screencastMode.fontSize": 20,
"screencastMode.onlyKeyboardShortcuts": true,
"screencastMode.verticalOffset": 10,
"workbench.sideBar.location": "right",
"git.autofetch": true,
"json.maxItemsComputed": 50000,
"editor.fontSize": 14,
"terminal.integrated.fontFamily": "monospace",
"font-switcher.fontFamily": "Cascadia Code, Ligconsolata, Consolas, DejaVu Sans Mono, monospace",
"font-switcher.enableLivePreview": true,
"terminal.integrated.fontSize": 16,
"liveshare.presence": true,
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": false,
"scminput": false,
"yaml": true
},
"screencastMode.mouseIndicatorColor": "#cca8ff",
"scss.validate": false,
"editor.quickSuggestions": {
"strings": true
},
"editor.autoClosingQuotes": "always",
"tailwindCSS.experimental.classRegex": [
"tw`([^`]*)", // tw`...`
"tw=\"([^\"]*)", // <div tw="..." />
"tw={\"([^\"}]*)", // <div tw={"..."} />
"tw\\.\\w+`([^`]*)", // tw.xxx`...`
"tw\\(.*?\\)`([^`]*)" // tw(Component)`...`
],
"tailwindCSS.includeLanguages": {
"typescript": "javascript",
"typescriptreact": "javascript"
},
"githubPullRequests.terminalLinksHandler": "github",
"markdown.preview.scrollEditorWithPreview": false,
"eslint.format.enable": true,
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"totalTypeScript.hiddenTips": [
"typing-function-parameters",
"ts-object-type",
"union-type",
"literal-type",
"basic-types",
"array-type",
"passing-generics-to-types",
"interface-declaration",
"typeof",
"optional-object-property",
"as-assertion",
"null-keyword",
"partial-utility-type",
"function-return-type",
"type-alias-declaration",
"variable-type-annotation",
"tuple-type",
"undefined-keyword",
"mapped-type",
"non-null-expression"
],
"npm.enableRunFromFolder": true,
"javascript.preferences.importModuleSpecifier": "non-relative",
"typescript.preferences.importModuleSpecifier": "non-relative",
"codeium.enableConfig": {
"*": false
},
"totalTypeScript.hideAllTips": false,
"totalTypeScript.hideBasicTips": true,
"intelephense.environment.includePaths": ["/vendor/**"],
"figma.autocompleteBlocks": true,
"terminal.integrated.env.linux": {},
"terminal.integrated.env.windows": {},
"editor.formatOnSave": true,
"console-ninja.featureSet": "Community",
"explorer.compactFolders": false,
"window.zoomLevel": -1,
"editor.stickyScroll.enabled": true,
"remote.autoForwardPortsSource": "hybrid",
"[prisma]": {
"editor.defaultFormatter": "Prisma.prisma"
},
"prisma.showPrismaDataPlatformNotification": false,
"github.copilot.editor.enableAutoCompletions": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment