Created
July 3, 2018 10:22
-
-
Save samuelcotterall/82f67643f40a923e85009d2e2d8abc05 to your computer and use it in GitHub Desktop.
VS Code Settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.fontSize": 13, | |
"editor.fontFamily": "Fira Code", | |
"editor.fontLigatures": false, | |
"editor.renderWhitespace": "all", | |
"editor.tabSize": 2, | |
"workbench.iconTheme": "vs-seti", | |
"editor.cursorStyle": "line-thin", | |
"trailing-spaces.trimOnSave": true, | |
"sync.gist": "", | |
"sync.lastUpload": "2018-06-25T09:02:19.504Z", | |
"sync.autoDownload": true, | |
"sync.autoUpload": true, | |
"sync.lastDownload": "2018-06-11T11:02:22.528Z", | |
"sync.forceDownload": false, | |
"sync.anonymousGist": false, | |
"sync.host": "", | |
"sync.pathPrefix": "", | |
"sync.quietSync": false, | |
"sync.askGistName": false, | |
"guides.enabled": false, | |
"window.zoomLevel": 0, | |
"sublimeTextKeymap.promptV3Features": true, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"editor.snippetSuggestions": "top", | |
"editor.formatOnPaste": true, | |
"editor.minimap.enabled": false, | |
"window.openFilesInNewWindow": "on", | |
"todo.embedded.exclude": [ | |
"**/.git", | |
"**/.svn", | |
"**/.hg", | |
"**/.vscode", | |
"**/.github", | |
"**/.next", | |
"**/node_modules", | |
"**/bower_components", | |
"**/dist", | |
"**/build", | |
"**/out", | |
"**/output", | |
"**/_output", | |
"**/third_party", | |
"**/*.min.*", | |
"**/*.map", | |
"**/vendor" | |
], | |
"emmet.includeLanguages": { | |
"razor": "html", | |
"php": "html", | |
"blade": "html" | |
}, | |
"files.exclude": { | |
"**/.git": true, // this is a default value | |
"**/.DS_Store": true, // this is a default value | |
"**/node_modules": true, // this excludes all folders | |
// named "node_modules" from | |
// the explore tree | |
"**/assets_old": true, // Fucking Protec | |
// alternative version | |
"node_modules": true // this excludes the folder | |
// only from the root of | |
// your workspace | |
}, | |
"git.confirmSync": false, | |
"git.autofetch": true, | |
"gitlens.advanced.messages": { | |
"suppressCommitHasNoPreviousCommitWarning": false, | |
"suppressCommitNotFoundWarning": false, | |
"suppressFileNotUnderSourceControlWarning": false, | |
"suppressGitVersionWarning": false, | |
"suppressLineUncommittedWarning": false, | |
"suppressNoRepositoryWarning": false, | |
"suppressResultsExplorerNotice": false, | |
"suppressShowKeyBindingsNotice": true, | |
"suppressUpdateNotice": false, | |
"suppressWelcomeNotice": true | |
}, | |
"gitlens.keymap": "alternate", | |
"sync.removeExtensions": true, | |
"sync.syncExtensions": true, | |
"workbench.colorTheme": "Dracula Soft", | |
"gitlens.historyExplorer.enabled": true, | |
"gitlens.defaultDateStyle": "absolute" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment