Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am mdolon on github.
  • I am mdolon (https://keybase.io/mdolon) on keybase.
  • I have a public key ASB_PTYxx5IiW38B9up9XUfkJnylmMjGvrGse5P2KUUrEwo

To claim this, I am signing this object:

// Place your settings in this file to overwrite the default settings
{
"javascript.validate.enable": false,
"editor.tabSize": 2,
"window.zoomLevel": 0,
"ActiveFileInStatusBar.fullpath": false,
"files.insertFinalNewline": true
}
// Place your key bindings in this file to overwrite the defaults
@mdolon
mdolon / sample.html
Created December 6, 2016 16:42
Example of a simple React app in a single HTML file
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Basic Example with JSX</title>
<style>
body {
text-align: center;
font-size: 33px;
}
@mdolon
mdolon / keybindings.json
Last active November 10, 2016 17:27
Visual Studio Code custom keyboard mappings and settings
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "cmd+'", "command": "workbench.action.terminal.toggleTerminal" },
{ "key": "cmd+shift+'", "command": "workbench.action.terminal.new" },
{ "key": "shift+cmd+[", "command": "workbench.action.previousEditor"},
{ "key": "shift+cmd+]", "command": "workbench.action.nextEditor"},
{ "key": "cmd+l", "command": "expandLineSelection",
"when": "editorTextFocus" },
{ "key": "cmd+;", "command": "workbench.action.terminal.focus",
"when": "!terminalFocus"},