Skip to content

Instantly share code, notes, and snippets.

@jonwaldstein
Last active March 16, 2020 16:06
Show Gist options
  • Save jonwaldstein/564874febda5d1cd74ff5a733478b289 to your computer and use it in GitHub Desktop.
Save jonwaldstein/564874febda5d1cd74ff5a733478b289 to your computer and use it in GitHub Desktop.
VS Code Settings
{
"editor.fontFamily": "Fira Code, Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 12,
"editor.lineHeight": 26,
"editor.quickSuggestionsDelay": 30,
"editor.letterSpacing": 0.5,
"html.format.enable": true,
"html.format.preserveNewLines": true,
"files.trimTrailingWhitespace": true,
"editor.cursorWidth": 5,
"editor.wordWrap": "on",
"editor.multiCursorModifier": "ctrlCmd",
"editor.fontWeight": "400",
"editor.cursorBlinking": "solid",
"editor.minimap.enabled": true,
"editor.renderWhitespace": "none",
"editor.rulers": [
80,
100
],
"editor.minimap.showSlider": "always",
"workbench.startupEditor": "newUntitledFile",
"extensions.ignoreRecommendations": false,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/.next": true
},
"workbench.editor.tabCloseButton": "right",
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"blade": "html"
},
"editor.snippetSuggestions": "top",
"workbench.editor.enablePreviewFromQuickOpen": false,
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}",
"[javascript]": {
"editor.formatOnSave": false
},
"eslint.alwaysShowStatus": true,
"editor.autoIndent": "full",
"window.closeWhenEmpty": true,
"editor.detectIndentation": false,
"files.insertFinalNewline": true,
"editor.showFoldingControls": "always",
"editor.find.seedSearchStringFromSelection": true,
"editor.matchBrackets": "always",
"window.openFilesInNewWindow": "off",
"workbench.editor.enablePreview": true,
"editor.scrollBeyondLastLine": true,
"editor.useTabStops": true,
"editor.formatOnPaste": true,
"window.zoomLevel": 1,
"editor.parameterHints.enabled": false,
"workbench.editor.tabSizing": "shrink",
"explorer.openEditors.visible": 0,
"tailwindCSS.emmetCompletions": true,
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": true
},
"search.exclude": {
"**/vendor": true,
"**/storage/app": true,
"**/storage/framework": true
},
"workbench.statusBar.visible": false,
"terminal.integrated.rendererType": "dom",
"workbench.activityBar.visible": true,
"editor.colorDecorators": false,
"workbench.iconTheme": "eq-material-theme-icons-darker",
"workbench.colorTheme": "Community Material Theme Darker High Contrast",
"diffEditor.renderSideBySide": true,
"intelephense.format.enable": false,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"materialTheme.accent": "Teal",
"editor.formatOnSave": true,
"merge-conflict.autoNavigateNextConflict.enabled": true,
"workbench.tree.indent": 10,
"workbench.tree.renderIndentGuides": "none",
"breadcrumbs.enabled": false,
}
@jonwaldstein
Copy link
Author

code --list-extensions

bmewburn.vscode-intelephense-client
bradlc.vscode-tailwindcss
cmstead.jsrefactor
dbaeumer.vscode-eslint
dsznajder.es7-react-js-snippets
eamodio.gitlens
emallin.phpunit
Equinusocio.vsc-community-material-theme
Equinusocio.vsc-material-theme
equinusocio.vsc-material-theme-icons
esbenp.prettier-vscode
felixfbecker.php-debug
formulahendry.auto-close-tag
jkjustjoshing.vscode-text-pastry
kumar-harsh.graphql-for-vscode
mblode.twig-language-2
mikestead.dotenv
ms-vscode.sublime-keybindings
naumovs.color-highlight
Prisma.vscode-graphql
rebornix.project-snippets
shinnn.stylelint
silvenon.mdx
sleistner.vscode-fileutils
wayou.vscode-todo-highlight
wix.vscode-import-cost
xabikos.ReactSnippets

@jonwaldstein
Copy link
Author

code --install-extension bmewburn.vscode-intelephense-client
code --install-extension bradlc.vscode-tailwindcss
code --install-extension cmstead.jsrefactor
code --install-extension dbaeumer.vscode-eslint
code --install-extension dsznajder.es7-react-js-snippets
code --install-extension eamodio.gitlens
code --install-extension emallin.phpunit
code --install-extension Equinusocio.vsc-community-material-theme
code --install-extension Equinusocio.vsc-material-theme
code --install-extension equinusocio.vsc-material-theme-icons
code --install-extension esbenp.prettier-vscode
code --install-extension felixfbecker.php-debug
code --install-extension formulahendry.auto-close-tag
code --install-extension jkjustjoshing.vscode-text-pastry
code --install-extension kumar-harsh.graphql-for-vscode
code --install-extension mblode.twig-language-2
code --install-extension mikestead.dotenv
code --install-extension ms-vscode.sublime-keybindings
code --install-extension naumovs.color-highlight
code --install-extension Prisma.vscode-graphql
code --install-extension rebornix.project-snippets
code --install-extension shinnn.stylelint
code --install-extension silvenon.mdx
code --install-extension sleistner.vscode-fileutils
code --install-extension wayou.vscode-todo-highlight
code --install-extension wix.vscode-import-cost
code --install-extension xabikos.ReactSnippets

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment