Last active
June 26, 2018 17:30
-
-
Save icecreammatt/669bec8cdafcd6451d46a671af654329 to your computer and use it in GitHub Desktop.
VSCode Settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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