Last active
September 23, 2024 13:59
-
-
Save DaviJP7/7be4ee59eacdbbbaf98b6325313dcb2a to your computer and use it in GitHub Desktop.
My vscode config file
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.fontFamily": "JetBrains Mono, 'Cascadia Code', Consolas, 'Courier New', monospace", | |
"editor.detectIndentation": false, | |
"editor.fontLigatures": true, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": [ | |
"comment", | |
"entity.name.type.class", | |
"keyword", | |
"storage.modifier", | |
"storage.type", | |
"support.class.builtin", | |
"keyword.control", | |
"constant.language", | |
"entity.other.attribute-name", | |
"entity.name.method" | |
], | |
"settings": { | |
"fontStyle": "italic" | |
} | |
}, | |
{ | |
"scope": [ | |
"invalid", | |
"keyword.operator", | |
"constant.numeric.css", | |
"keyword.other.unit.px.css", | |
"constant.numeric.decimal.js", | |
"constant.numeric.json" | |
], | |
"settings": { | |
"fontStyle": "" | |
} | |
} | |
] | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"editor.renderWhitespace": "none", | |
"editor.unicodeHighlight.invisibleCharacters": false, | |
"terminal.integrated.fontFamily": "monospace", | |
"terminal.integrated.fontWeight": "normal", | |
"terminal.integrated.defaultProfile.osx": "", | |
"explorer.confirmDelete": false, | |
"[css]": { | |
"editor.defaultFormatter": "vscode.css-language-features" | |
}, | |
"workbench.list.smoothScrolling": true, | |
"editor.smoothScrolling": true, | |
"explorer.confirmDragAndDrop": false, | |
"files.exclude": { | |
"**/.idea": true | |
}, | |
"editor.foldingHighlight": false, | |
"explorer.autoReveal": false, | |
"editor.inlineSuggest.enabled": true, | |
"terminal.integrated.defaultProfile.windows": "PowerShell", | |
"workbench.startupEditor": "none", | |
"[vue]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"vsicons.dontShowNewVersionMessage": true, | |
"html.format.wrapAttributes": "force", | |
"[json]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"editor.tabSize": 2, | |
"extensions.ignoreRecommendations": true, | |
"intelephense.diagnostics.undefinedVariables": false, | |
"intelephense.diagnostics.undefinedProperties": false, | |
"intelephense.diagnostics.undefinedTypes": false, | |
"editor.unicodeHighlight.includeStrings": false, | |
"github.copilot.enable": { | |
"*": true, | |
"plaintext": false, | |
"markdown": true, | |
"scminput": false | |
}, | |
"git.autofetch": true, | |
"editor.fontSize": 15.5, | |
"window.commandCenter": false, | |
"diffEditor.hideUnchangedRegions.enabled": true, | |
"bookmarks.gutterIconBorderColor": "#e28743", | |
"bookmarks.gutterIconFillColor": "#e28743", | |
"[javascriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"projectManager.sortList": "Path", | |
"symbols.hidesExplorerArrows": false, | |
"intelephense.diagnostics.undefinedMethods": false, | |
"editor.gotoLocation.multipleDefinitions": "goto", | |
"workbench.layoutControl.enabled": false, | |
"intelephense.diagnostics.duplicateSymbols": false, | |
"intelephense.diagnostics.undefinedFunctions": false, | |
"workbench.iconTheme": "vscode-icons", | |
"editor.cursorBlinking": "expand", | |
"editor.stickyScroll.enabled": false, | |
"workbench.activityBar.location": "top", | |
"workbench.colorTheme": "Dark Magic Night", | |
"[dockercompose]": { | |
"editor.defaultFormatter": "ms-azuretools.vscode-docker" | |
}, | |
"files.associations": { | |
".env-example": "dotenv" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment