Skip to content

Instantly share code, notes, and snippets.

@icecreammatt
Last active June 26, 2018 17:30
Show Gist options
  • Save icecreammatt/669bec8cdafcd6451d46a671af654329 to your computer and use it in GitHub Desktop.
Save icecreammatt/669bec8cdafcd6451d46a671af654329 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"workbench.colorTheme": "Palenight Theme",
"window.zoomLevel": 1,
"workbench.iconTheme": "vscode-icons",
"editor.minimap.enabled": false,
"vim.easymotion": true,
"vim.leader": ",",
"vim.normalModeKeyBindings": [
{
"before": [
"H"
],
"after": [
"^"
]
},
{
"before": [
"L"
],
"after": [
"$"
]
}
],
"vim.insertModeKeyBindings": [
{
"before": [
"j",
"j"
],
"after": [
"<Esc>"
]
}
],
"workbench.statusBar.visible": false,
"workbench.activityBar.visible": false,
"editor.lineNumbers": "off",
"git.decorations.enabled": false,
"editor.glyphMargin": false,
"editor.folding": false,
"editor.scrollbar.vertical": "hidden",
"editor.scrollbar.verticalScrollbarSize": 6,
"editor.renderWhitespace": "all",
"terminal.integrated.fontSize": 13,
"workbench.editor.showTabs": false,
"vscode_custom_css.imports": ["file:///Users/mattc/.vscode/hide-top-bar.css"],
"vscode_custom_css.policy": true,
"window.menuBarVisibility": "hidden",
"workbench.startupEditor": "newUntitledFile"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment