Skip to content

Instantly share code, notes, and snippets.

@sh1kxrv
Last active February 3, 2023 10:41
Show Gist options
  • Save sh1kxrv/1972eaa72e78dec34ff4a6a742f1d0c4 to your computer and use it in GitHub Desktop.
Save sh1kxrv/1972eaa72e78dec34ff4a6a742f1d0c4 to your computer and use it in GitHub Desktop.
VS Code | Settings | Win
{
"window.title": "${appName}${separator}0xaffff${separator}📦${rootName}${dirty}",
"window.restoreWindows": "none",
"telemetry.telemetryLevel": "off",
"emmet.triggerExpansionOnTab": true,
"emmet.showExpandedAbbreviation": "inMarkupAndStylesheetFilesOnly",
// Editor
"editor.smoothScrolling": true,
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.suggest.showWords": false,
"editor.suggest.preview": true,
"editor.linkedEditing": true,
"editor.inlayHints.enabled": "on",
"editor.cursorSmoothCaretAnimation": true,
"editor.wordSeparators": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?",
"editor.inlineSuggest.enabled": true,
"editor.acceptSuggestionOnEnter": "on",
"editor.suggest.selectionMode": "always",
// Font
"editor.fontFamily": "JetBrains Mono",
"terminal.integrated.fontFamily": "JetBrains Mono",
"terminal.integrated.fontSize": 12,
"editor.fontLigatures": true,
// Terminal
"terminal.integrated.defaultProfile.windows": "Git Bash",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.minimumContrastRatio": 1,
"terminal.integrated.gpuAcceleration": "auto",
"terminal.integrated.smoothScrolling": true,
// Explorer
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml, jest.config.js, .gitignore, commitlint.config.js, jsconfig.json, tsconfig.json, .pnpm-debug.log, components.d.ts, .npmrc"
},
"explorer.compactFolders": false,
// Workbench
"workbench.iconTheme": "material-icon-theme",
"workbench.list.smoothScrolling": true,
"workbench.startupEditor": "none",
"workbench.editor.enablePreview": false,
"workbench.localHistory.enabled": false,
"workbench.colorTheme": "Atom One Dark",
"workbench.editor.restoreViewState": false,
"workbench.layoutControl.enabled": false,
"workbench.colorCustomizations": {
"errorLens.errorMessageBackground": "#fd9b9b2c",
"errorLens.errorForeground": "#ff8484",
"errorLens.warningMessageBackground": "#ffe55025",
"errorLens.warningForeground": "#ffec7d",
"editorInlayHint.foreground": "#e77aa4"
},
// File
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
// Extensions
"extensions.ignoreRecommendations": true,
// JS/TS
"javascript.updateImportsOnFileMove.enabled": "prompt",
"javascript.inlayHints.variableTypes.enabled": false,
"javascript.inlayHints.parameterNames.enabled": "none",
"typescript.inlayHints.parameterNames.enabled": "none",
// ESLint
"eslint.enable": true,
"eslint.lintTask.enable": true,
// Other
"better-comments.highlightPlainText": true,
"better-comments.tags": [
{
"tag": "refactor",
"color": "#E87766",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": true,
"italic": false
},
{
"tag": "fixme",
"color": "#FFFFFF",
"strikethrough": false,
"underline": false,
"backgroundColor": "#E87766",
"bold": true,
"italic": false
},
{
"tag": "todo",
"color": "#3EAC7D",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "*",
"color": "#98C379",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
}
],
"volar.completion.preferredTagNameCase": "kebab",
"volar.completion.preferredAttrNameCase": "kebab",
"github.copilot.enable": {
"*": true,
"yaml": false,
"plaintext": true,
"markdown": false,
"rust": true,
"vue": true,
"go": true,
"javascript": true
},
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"go.toolsManagement.autoUpdate": true,
"eslint.probe": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"html",
"vue",
"markdown"
],
"editor.stickyScroll.enabled": false,
"cssvar.extensions": ["scss", "sass", "vue", "css"],
"workbench.productIconTheme": "fluent-icons",
"redhat.telemetry.enabled": false,
"editor.accessibilitySupport": "on",
"prettier.endOfLine": "auto",
"errorLens.messageBackgroundMode": "message",
"errorLens.messageTemplate": "$severity -> $message | $source",
"errorLens.severityText": ["ERROR", "WARN", "INFO", "HINT"],
"errorLens.onSave": true,
"errorLens.padding": "3px 1ch",
"errorLens.borderRadius": ".2rem",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment