Skip to content

Instantly share code, notes, and snippets.

@ysheng26
Created April 18, 2018 04:03
Show Gist options
  • Save ysheng26/da3840ac03013a066b23b32560630b6b to your computer and use it in GitHub Desktop.
Save ysheng26/da3840ac03013a066b23b32560630b6b to your computer and use it in GitHub Desktop.
{
"editor.fontSize": 14,
"editor.renderLineHighlight": "none",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"editor.rulers": [
80
],
"editor.renderWhitespace": "all",
"vim.disableExtension": true,
"vim.useSystemClipboard": true,
"vim.easymotion": true,
"vim.surround": true,
"vim.incsearch": true,
"vim.hlsearch": true,
"vim.insertModeKeyBindingsNonRecursive": [
{
"before": ["j", "k"],
"after": ["<Esc>"]
}
],
"vim.otherModesKeyBindingsNonRecursive": [
{
"before": ["Z", "Z"],
"after": [],
"commands": [
{
"command": "workbench.action.files.save",
"args": []
},
{
"command": "workbench.action.closeActiveEditor",
"args": []
}
]
},
{
"before":["<Space>"],
"after":[],
"commands": [
{
"command": ":nohl",
"args": []
}
]
},
{
"before": ["leader", "w"],
"after": [],
"commands": [
{
"command": "workbench.action.files.save",
"args": []
}
]
},
{
"before": ["leader", "q"],
"after": [],
"commands": [
{
"command": "workbench.action.closeActiveEditor",
"args": []
}
]
},
{
"before": ["j"],
"after": ["g", "j"]
},
{
"before": ["k"],
"after": ["g", "k"]
}
],
"vim.leader": ",",
"editor.codeLens": false,
"window.zoomLevel": 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment