Skip to content

Instantly share code, notes, and snippets.

@klgh
Last active May 11, 2021 19:10
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 klgh/ceec84173cfd317889f7a593154a05d1 to your computer and use it in GitHub Desktop.
Save klgh/ceec84173cfd317889f7a593154a05d1 to your computer and use it in GitHub Desktop.
VS Code Settings w/touchbar options
{
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "New Moon",
"workbench.startupEditor": "newUntitledFile",
"material-icon-theme.activeIconPack": "react",
"editor.wordWrap": "on",
"editor.fastScrollSensitivity": 10,
"editor.minimap.renderCharacters": false,
"editor.minimap.maxColumn": 200,
"editor.smoothScrolling": true,
"editor.minimap.showSlider": "always",
"editor.cursorBlinking": "phase",
"editor.cursorSmoothCaretAnimation": true,
"editor.fontSize": 14,
"editor.suggestSelection": "first",
"editor.autoClosingBrackets": "always",
"eslint.alwaysShowStatus": true,
"eslint.packageManager": "npm",
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"files.insertFinalNewline": true,
"gitlens.currentLine.enabled": false,
"gitlens.hovers.currentLine.over": "line",
"javascript.updateImportsOnFileMove.enabled": "always",
"nasc-touchbar.goToDefinition": false,
"nasc-touchbar.blockComment": true,
"nasc-touchbar.commentLine": true,
"nasc-touchbar.addCursorBelow": false,
"nasc-touchbar.rename": false,
"nasc-touchbar.jumpToBracket": true,
"prettier.jsxBracketSameLine": true,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"terminal.integrated.defaultProfile.osx": "/bin/zsh",
"terminal.external.osxExec": "iTerm.app",
"window.title": "${dirty}${separator}${activeEditorMedium}${separator}${rootName}",
"workbench.editor.highlightModifiedTabs": true,
"[scss]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"liveshare.authenticationProvider": "GitHub",
"liveshare.connectionMode": "relay",
"editor.linkedEditing": true,
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.fontFamily": "Menlo, Monaco, 'Courier New', monospace",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment