Skip to content

Instantly share code, notes, and snippets.

@trivett
Last active August 14, 2017 18:43
Show Gist options
  • Save trivett/a6e0fc206a831a687133ffe395a2522e to your computer and use it in GitHub Desktop.
Save trivett/a6e0fc206a831a687133ffe395a2522e to your computer and use it in GitHub Desktop.
// Place your settings in this file to overwrite the default settings
{
"editor.fontFamily": "Hack, Fira Mono for Powerline,Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 15,
"editor.tabSize": 2,
"editor.wordWrap": "on",
"workbench.colorTheme": "Eagle Oceanic Next",
"editor.wordWrap": "on",
"window.zoomLevel": 0,
"editor.renderIndentGuides": false,
"editor.showFoldingControls": "always",
"workbench.colorCustomizations": {
"editorGutter.background": "#343D46"
},
"workbench.iconTheme": "material-theme-icons",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/tmp": true,
"**/.DS_Store": true
},
}
}
keybindings
[
{
"key": "ctrl+shift+up",
"command": "editor.action.moveLinesUpAction",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+down",
"command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus"
},
{
"key": "cmd+shift+d",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment