Skip to content

Instantly share code, notes, and snippets.

@jsheridanwells
Created July 24, 2018 19:48
Show Gist options
  • Save jsheridanwells/d5dcec1168528ae188fbc57d0ac4487b to your computer and use it in GitHub Desktop.
Save jsheridanwells/d5dcec1168528ae188fbc57d0ac4487b to your computer and use it in GitHub Desktop.
VS Code Settings

Work Extensions to Keep:

Angular 1.x Code Snippets : alexandersage

Beautify : HookyQR

.gitignore : CodeZombie

GitLens : EricAmodio

html-to-javascript : SamuelGarcia

Jasmine E5 Code Snippets : Budi Irawan

jQuery Snippets : Hridoy

Protractor Snippets : Budi Irawan

Settings Sync

SQL Server (mssql) : Microsoft

Sublime Text Keymap and Settings Importer : Microsoft

VSCode Clock : yahya-gilany

XML Tolls : Josh Johnson

Theme:

Dark + (default dark)

file Icon Theme : Seti

"Javascript Docstring": {
"prefix": "jsdoc",
"body": [
"/**",
"* Returns the sum of a and b",
"* @param {number} a",
"* @param {number} b",
"* @returns {number} Sum of a and b",
"*/",
],
"description": "Generates docstring for javascript functions"
}
}
// Work settings:
{
"window.zoomLevel": 0,
"sync.gist": "jsheridanwells",
"sync.lastUpload": "",
"sync.autoDownload": false,
"sync.autoUpload": false,
"sync.lastDownload": "",
"sync.forceDownload": false,
"sync.host": "",
"sync.pathPrefix": "",
"sync.quietSync": false,
"sync.askGistName": false,
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"editor.minimap.enabled": true,
"sublimeTextKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": true,
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"explorer.confirmDelete": false,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
},
"clock.datetimeFormat": "HH:mm:ss a",
"workbench.editor.enablePreview": false,
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 100,
"emmet.includeLanguages": {
"html": "html",
"erb": "erb",
"javascript": "javascriptreact",
"vue": "html",
"ejs": "html"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment