Skip to content

Instantly share code, notes, and snippets.

@kadamwhite
Last active May 8, 2019 03:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kadamwhite/9a2d0bad101e54adf5f89d545403d3a1 to your computer and use it in GitHub Desktop.
Save kadamwhite/9a2d0bad101e54adf5f89d545403d3a1 to your computer and use it in GitHub Desktop.
Visual Studio Code Preferences

From Joe M, "you can get your current extensions list by typing code --list-extensions in CLI" His list:

alefragnani.Bookmarks
annsk.alignment
dbaeumer.vscode-eslint
donjayamanne.githistory
eamodio.gitlens
EditorConfig.EditorConfig
eg2.vscode-npm-script
felixfbecker.php-debug
felixfbecker.php-intellisense
felixfbecker.php-pack
ikappas.phpcs
joshpeng.sublime-babel-vscode
msjsdiag.debugger-for-chrome
neilbrayfield.php-docblocker
persoderlind.vscode-phpcbf
robinbentley.sass-indented
streetsidesoftware.code-spell-checker
waderyan.gitblame
zhuangtongfa.Material-theme
  • IBM.output-colorizer
  • anseki.vscode-color
  • beaugust.blamer-vs
  • bierner.lit-html
  • bmewburn.vscode-intelephense-client
  • christian-kohler.path-intellisense
  • claudiosanches.wpcs-whitelist-flags
  • dbaeumer.vscode-eslint
  • DotJoshJohnson.xml
  • dzannotti.vscode-babel-coloring
  • eamodio.gitlens
  • EditorConfig.EditorConfig
  • eg2.vscode-npm-script
  • felixfbecker.php-debug
  • ikappas.phpcs
  • jpogran.puppet-vscode
  • mrmlnc.vscode-scss
  • neilbrayfield.php-docblocker
  • octref.vetur
  • pnp.polacode
  • RobbOwen.synthwave-vscode
  • robinbentley.sass-indented
  • sleistner.vscode-fileutils
  • stkb.rewrap
  • swyphcosmo.spellchecker
  • sysoev.language-stylus
  • Tobiah.language-pde
  • yzhang.markdown-all-in-one
  • Zignd.html-css-class-completion
// Place your settings in this file to overwrite the default settings
{
"editor.detectIndentation": true,
"editor.formatOnPaste": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.renderWhitespace": "boundary",
"editor.scrollBeyondLastLine": true,
"editor.snippetSuggestions": "top",
"editor.tabSize": 2,
// Configure glob patterns for excluding files and folders.
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/node_modules": true,
"**/*.sublime-*": true,
"**/.DS_Store": true
},
"files.insertFinalNewline": true,
"workbench.colorTheme": "SynthWave '84",
"workbench.colorCustomizations": {
"tab.border": "#281d35",
"tab.inactiveBackground": "#241b2f",
"tab.activeModifiedBorder": "#880088",
"statusBar.background": "#4d2c6f",
"statusBar.foreground": "#dfd3e0",
"statusBar.noFolderBackground": "#4d2c6f",
"statusBar.debuggingBackground": "#c976fa",
"statusBar.debuggingForeground": "#10011a"
},
"workbench.editor.closeOnFileDelete": false,
"workbench.editor.enablePreview": true,
"workbench.editor.highlightModifiedTabs": true,
"workbench.iconTheme": "vs-seti",
"files.trimTrailingWhitespace": true,
"window.zoomLevel": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment