Skip to content

Instantly share code, notes, and snippets.

@TheMartes
Last active October 20, 2017 20:38
Show Gist options
  • Save TheMartes/beab4311d8e0515082ad25defe1fcd73 to your computer and use it in GitHub Desktop.
Save TheMartes/beab4311d8e0515082ad25defe1fcd73 to your computer and use it in GitHub Desktop.
VSCode Settings
{
// Workbench
"workbench.colorTheme": "Dracula",
"workbench.startupEditor": "newUntitledFile",
"workbench.editor.showTabs": true,
"workbench.editor.tabCloseButton": "left",
"workbench.editor.enablePreview": true,
// Files
"files.autoSave": "onFocusChange",
"files.encoding": "utf8",
// Window
"window.openFoldersInNewWindow": "on",
"window.enableMenuBarMnemonics": false,
// File Explorer
"explorer.openEditors.visible": 9,
// Update
"update.channel": "default",
// PHP
"php.validate.executablePath": "C:\\laragon\\bin\\php\\php-7.1.7-Win32-VC14-x64\\php.exe",
// Integrated Terminal
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
"terminal.integrated.fontFamily": "Pragmata Pro Mono",
"terminal.integrated.fontSize": 14,
// Editor
"editor.tabCompletion": true,
"editor.fontSize": 14,
"editor.cursorStyle": "block",
"editor.lineHeight": 25,
"editor.renderLineHighlight": "none",
"editor.wordWrap": "on",
"editor.fontFamily": "'Pragmata Pro Mono', 'Courier New', monospace",
"editor.multiCursorModifier": "ctrlCmd",
"workbench.activityBar.visible": false,
"window.menuBarVisibility": "toggle"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment