Skip to content

Instantly share code, notes, and snippets.

@elijahmanor
Last active November 27, 2019 16:13
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 elijahmanor/f0d99bbb82772620f1fa95f684242265 to your computer and use it in GitHub Desktop.
Save elijahmanor/f0d99bbb82772620f1fa95f684242265 to your computer and use it in GitHub Desktop.
settings.json vs code
{
"editor.minimap.enabled": false,
"vim.easymotion": true,
"vim.highlightedyank.enable": true,
"vim.easymotionMarkerFontFamily": "Menlo, Monaco, 'Courier New', monospace",
"vim.easymotionMarkerYOffset": 6,
"vim.easymotionMarkerFontSize": "12",
"window.zoomLevel": 2,
"editor.cursorSmoothCaretAnimation": true,
"editor.smoothScrolling": true,
"terminal.integrated.cursorBlinking": true,
"editor.cursorBlinking": "phase",
"markdown.preview.fontSize": 12,
"editor.fontLigatures": true,
"editor.scrollBeyondLastLine": false,
"editor.renderWhitespace": "all",
"terminal.integrated.fontWeightBold": "normal",
"terminal.integrated.rendererType": "dom",
"editor.formatOnSave": false,
"editor.cursorStyle": "line",
"editor.fontFamily": "'Fira Code', Menlo, Monaco, 'Courier New', monospace",
"editor.fontWeight": "500",
"editor.rulers": [
80
],
"editor.fontSize": 12,
"terminal.integrated.fontSize": 12,
"terminal.integrated.fontFamily": "Menlo, Monaco, 'Courier New', monospace",
"workbench.colorTheme": "GitHub Plus",
"files.autoSave": "onFocusChange",
"terminal.integrated.shell.osx": "/bin/zsh",
"vsicons.dontShowNewVersionMessage": true,
"workbench.iconTheme": "material-icon-theme",
"cSpell.userWords": [
"gsap",
"nuxt",
"tachyons",
"tailwindcss",
"vuex"
],
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
},
"prettier.semi": false,
"emmet.includeLanguages": {
"javascript": "javascriptreact",
"vue-html": "html",
"vue": "html",
"plaintext": "jade"
},
"emmet.triggerExpansionOnTab": true,
"editor.parameterHints": false,
"files.exclude": {
"node_modules": false,
"dist": false,
".*": false
},
"editor.tabSize": 2,
"workbench.startupEditor": "newUntitledFile",
"prettier.printWidth": 60,
"files.associations": {
".poirc": "javascript"
},
"git.path": "/usr/local/bin/git",
"zenMode.restore": true,
"workbench.activityBar.visible": true,
"workbench.panel.location": "bottom",
"editor.renderControlCharacters": true,
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressUpdateNotice": false,
"suppressWelcomeNotice": true
},
"newFile.expandBraces": true,
"newFile.relativeTo": "project",
"newFile.showPathRelativeTo": "project",
"vetur.format.defaultFormatter.html": "prettier",
"workbench.statusBar.visible": false,
"editor.lineNumbers": "on",
"editor.renderIndentGuides": true,
"gitlens.blame.line.enabled": false,
"gitlens.blame.file.lineHighlight.enabled": false,
"gitlens.codeLens.enabled": false,
"git.autofetch": true,
"workbench.editor.enablePreview": false
}