Skip to content

Instantly share code, notes, and snippets.

@dbpolito
Created March 29, 2018 19:27
Show Gist options
  • Save dbpolito/ff9d4e75cd96a8bb63bf29bc65727858 to your computer and use it in GitHub Desktop.
Save dbpolito/ff9d4e75cd96a8bb63bf29bc65727858 to your computer and use it in GitHub Desktop.
Beautiful VSCode Settings
[
"Docker",
"DotENV",
"ESLint",
"GitLens - Git supercharged",
"Laravel Blade Snippets",
"PHP Intelephense",
"Prettier - Code formatter",
"Project Manager",
"Rainglow",
"Sass",
"Vetur"
]
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "cmd+r",
"command": "workbench.action.gotoSymbol"
},
{
"key": "shift+cmd+o",
"command": "-workbench.action.gotoSymbol"
},
{
"key": "shift+cmd+r",
"command": "workbench.action.showAllSymbols"
},
{
"key": "cmd+t",
"command": "-workbench.action.showAllSymbols"
},
{
"key": "cmd+t",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "ctrl+`",
"command": "-workbench.action.terminal.toggleTerminal"
},
{
"key": "shift+cmd+d",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+alt+down",
"command": "-editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+cmd+.",
"command": "workbench.action.terminal.focusNext"
},
{
"key": "ctrl+cmd+,",
"command": "workbench.action.terminal.focusPrevious"
},
{
"key": "ctrl+cmd+n",
"command": "workbench.action.terminal.new"
},
{
"key": "ctrl+shift+`",
"command": "-workbench.action.terminal.new"
},
{
"key": "ctrl+cmd+/",
"command": "workbench.action.toggleMaximizedPanel"
},
{
"key": "cmd+d",
"command": "workbench.action.terminal.split",
"when": "terminalFocus"
},
{
"key": "cmd+\\",
"command": "-workbench.action.terminal.split",
"when": "terminalFocus"
},
{
"key": "shift+cmd+w",
"command": "workbench.action.terminal.kill"
}
]
{
"editor.codeLens": false,
"editor.fontFamily": "Fira Code",
"editor.fontSize": 15,
"editor.fontLigatures": true,
"editor.lineHeight": 50,
"editor.minimap.enabled": false,
"editor.renderWhitespace": "boundary",
"files.insertFinalNewline": true,
"editor.rulers": [80],
"files.trimTrailingWhitespace": true,
"workbench.colorCustomizations":
{
"statusBar.background" : "#343941",
// "statusBar.noFolderBackground" : "#343941",
// "statusBar.debuggingBackground": "#511f1f"
},
"editor.wordWrap": "on",
"explorer.openEditors.visible": 0,
"terminal.integrated.fontFamily": "Fira Code",
"terminal.integrated.fontSize": 15,
"terminal.integrated.lineHeight": 3,
"workbench.colorTheme": "Laracasts Contrast (rainglow)",
"search.useIgnoreFiles": false,
"window.zoomLevel": 0,
"workbench.startupEditor": "newUntitledFile",
"gitlens.keymap": "alternate",
"search.location": "panel",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment