Skip to content

Instantly share code, notes, and snippets.

@eljefedelrodeodeljefe
Last active October 4, 2018 09:01
Show Gist options
  • Save eljefedelrodeodeljefe/7c9e2e27885eff630ab91aee099df54c to your computer and use it in GitHub Desktop.
Save eljefedelrodeodeljefe/7c9e2e27885eff630ab91aee099df54c to your computer and use it in GitHub Desktop.
VSCode Config
AlanWalk.markdown-toc
DavidAnson.vscode-markdownlint
EQuimper.react-native-react-redux
EditorConfig.EditorConfig
HookyQR.beautify
PeterJausovec.vscode-docker
Telerik.nativescript
Tyriar.terminal-tabs
abusaidm.html-snippets
akamud.vscode-theme-onedark
akmittal.hugofy
anseki.vscode-color
bajdzis.vscode-database
blanu.vscode-styled-jsx
bungcip.better-toml
capaj.vscode-standardjs-snippets
chenxsan.vscode-standardjs
christian-kohler.npm-intellisense
christian-kohler.path-intellisense
dawhite.mustache
dbaeumer.vscode-eslint
discountry.react-redux-react-router-snippets
drKnoxy.eslint-disable-snippets
dsznajder.es7-react-js-snippets
dzannotti.vscode-babel-coloring
eamodio.gitlens
ecmel.vscode-html-css
eg2.tslint
eg2.vscode-npm-script
eriklynd.json-tools
felipecaputo.git-project-manager
formulahendry.code-runner
gluons.vscode-atom-javascript-snippet
hollowtree.vue-snippets
jasonnutter.search-node-modules
jeremyrajan.react-component
joaoacdias.golang-tdd
joelday.docthis
leizongmin.node-module-intellisense
lukehoban.Go
matthewferreira.cppcheck
mgmcdermott.vscode-language-babel
michelemelluso.code-beautifier
mikestead.dotenv
ms-mssql.mssql
ms-python.python
ms-vscode.atom-keybindings
ms-vscode.cpptools
ms-vscode.js-atom-grammar
ms-vscode.node-debug2
msjsdiag.debugger-for-chrome
octref.vetur
paragdiwan.gitpatch
rafaelmaiolla.diff
redhat.java
ryanluker.vscode-coverage-gutters
ryu1kn.annotator
sdras.vue-vscode-snippets
shanoor.vscode-nginx
sleistner.vscode-fileutils
sporiley.css-auto-prefix
stevencl.addDocComments
taichi.react-beautify
toba.vsfire
twxs.cmake
vector-of-bool.cmake-tools
vsciot-vscode.vscode-arduino
vscjava.vscode-java-debug
vsmobile.vscode-react-native
waderyan.gitblame
waderyan.nodejs-extension-pack
wwm.better-align
xabikos.JavaScriptSnippets
yzhang.markdown-all-in-one
zhuangtongfa.Material-theme
{
/*
// Place your snippets for JavaScript here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
"Print to console": {
"prefix": "log",
"body": [
"console.log('$1');",
"$2"
],
"description": "Log output to console"
}
*/
"Print to console": {
"prefix": "log",
"body": [
"console.log('$1')",
"$2"
],
"description": "Log output to console"
},
"Simple class": {
"prefix": "class",
"body": [
"class ${1:GenericClass} {",
" constructor (options) {",
" this.options = Object.assign({}, options)",
" }",
"",
" $3",
"}",
""
],
"description": "Log output to console"
},
"Simple function": {
"prefix": "fun",
"body": [
"function $1 ($2) {",
" $3",
"}",
""
],
"description": "A simple function"
}
}
{
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "One Dark Pro",
"explorer.sortOrder": "type",
"terminal.integrated.shellArgs.osx": [
// "-l"
],
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "vue",
"autoFix": true
},
{
"language": "html",
"autoFix": true
}
],
"atomKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"files.autoSave": "onFocusChange",
"editor.snippetSuggestions": "top",
"files.exclude": {
"**/.git": false,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
},
"search.exclude": {
"**/node_modules": true,
"**/.git": true,
"**/bower_components": true
},
"editor.largeFileOptimizations": false,
"files.associations": {
"*.yml": "yaml"
},
"[yaml]": {},
"window.zoomLevel": 0,
"terminal.integrated.scrollback": 2000,
"extensions.ignoreRecommendations": false,
"editor.formatOnSave": true,
"[javascript]": {
"editor.formatOnSave": false,
},
"[cpp]": {
"editor.formatOnSave": true,
},
"eslint.autoFixOnSave": true,
"vetur.format.defaultFormatter.ts": "none",
"vetur.format.defaultFormatter.js": "none",
"python.jediEnabled": false,
"clang-format.language.proto.enable": false,
"clang-format.language.typescript.enable": false,
"clang-format.language.objective-cpp.enable": false,
"clang-format.language.objective-c.enable": false,
"clang-format.language.javascript.enable": false,
"clang-format.language.java.enable": false,
"clang-format.language.glsl.enable": false,
"cppcheck.lintingEnabled": false,
"C_Cpp.formatting": "Disabled",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment