Skip to content

Instantly share code, notes, and snippets.

@zerob13
Last active August 14, 2018 11:19
Show Gist options
  • Select an option

  • Save zerob13/37a5005e444d2f2d2ec6d691c1b34ce7 to your computer and use it in GitHub Desktop.

Select an option

Save zerob13/37a5005e444d2f2d2ec6d691c1b34ce7 to your computer and use it in GitHub Desktop.
My Visual Studio Code configure
{
"workbench.colorTheme": "Material",
"editor.tabSize": 2,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
},
"editor.lineNumbers": "off",
"editor.insertSpaces": true,
"editor.fontSize": 16,
"vim.easymotion": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.leader": ",",
"vim.handleKeys": {
"<C-y>": true
},
"vim.otherModesKeyBindingsNonRecursive": [
{
"before": [
"<C-n>"
],
"after": [
"g",
"c"
]
},
{
"before": [
"g",
"c"
],
"after": [
"g",
"b"
]
},
{
"before": [
"g",
"C"
],
"after": [
"g",
"B"
]
},
{
"before": [
"leader",
"f",
"f"
],
"after": [],
"commands": [
{
"command": "editor.action.formatDocument",
"args": []
}
]
}
],
"vim.statusBarColorControl": true,
"vim.statusBarColors": {
"normal": "#005f5f",
"insert": "#5f0000",
"visual": "#5f00af",
"visualline": "#005f87",
"visualblock": "#86592d",
"replace": "#000000"
},
"workbench.iconTheme": "material-icon-theme",
"workbench.colorCustomizations": {
"statusBar.background": "#5f00af",
"statusBar.noFolderBackground": "#5f00af",
"statusBar.debuggingBackground": "#5f00af"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment