Skip to content

Instantly share code, notes, and snippets.

@lindstrm
Last active September 15, 2018 09:32
Show Gist options
  • Save lindstrm/8ebd0c81c886a41acabddbbec258c387 to your computer and use it in GitHub Desktop.
Save lindstrm/8ebd0c81c886a41acabddbbec258c387 to your computer and use it in GitHub Desktop.
plugins and settings for vscode
{
"Print to console": {
"prefix": "log",
"body": [
"console.log($1);"
],
"description": "Log output to console"
}
}

Vue

  • vetur
  • vue peek
  • EditorConfig for Visual Studio Code
  • Node.js Modules Intellisense
  • Path Intellisense
  • scss intellisense
  • color picker
  • colorize
  • template literal editor

misc

  • Version Lens
  • Regex previewer
  • Document This
  • eslint
  • git lens
  • graphql for vscode
  • language-stylus
  • Material Icon Theme
  • one dark pro (theme)
  • bracket pair colorizer
  • snippet-creator
  • better comments
  • live server preview
  • subliminal
  • tslint
  • vs live share

php

  • PHP Intelephense
  • php cs fixer
  • better phpunit
{
"editor.fontSize": 18,
"editor.fontFamily": "Operator Mono",
"editor.minimap.enabled": false,
"editor.fontWeight": "400",
"files.autoSave": "onFocusChange",
"workbench.colorTheme": "One Dark Pro",
"workbench.iconTheme": "material-icon-theme",
"window.zoomLevel": 0,
"workbench.startupEditor": "welcomePage",
"editor.renderIndentGuides": false,
"workbench.colorCustomizations": {
"tab.activeBackground": "#3F4552",
"activityBar.background": "#1F222B",
"editorGroup.background": "#292D35",
"sideBar.background": "#191C22",
"sideBarSectionHeader.background": "#111318"
},
"javascript.referencesCodeLens.enabled": true,
"editor.codeLens": true,
"editor.lightbulb.enabled": true,
// "editor.quickSuggestions": {
// "other": true,
// "comments": false,
// "strings": true
// },
"editor.suggestSelection": "first",
"material-icon-theme.showUpdateMessage": false,
"explorer.openEditors.visible": 0,
"eslint.autoFixOnSave": true,
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
"terminal.integrated.shellArgs.windows": [],
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true,
"suppressUpdateNotice": false,
"suppressWelcomeNotice": true
},
"explorer.confirmDragAndDrop": false,
"gitlens.gitExplorer.files.layout": "auto",
"gitlens.codeLens.enabled": false,
"gitlens.keymap": "chorded",
"prettier.singleQuote": true,
"editor.formatOnSave": true,
"gitlens.historyExplorer.enabled": true,
"nativescript.analytics.enabled": false,
"javascript.preferences.quoteStyle": "single",
"typescript.preferences.quoteStyle": "single",
"editor.cursorStyle": "block",
"editor.accessibilitySupport": "off",
"editor.snippetSuggestions": "bottom",
"editor.tabCompletion": true,
"window.titleBarStyle": "custom",
"breadcrumbs.enabled": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment