Skip to content

Instantly share code, notes, and snippets.

@nicoaudy
Last active May 1, 2019 04:42
Show Gist options
  • Save nicoaudy/79fb225c3e50d0dc56f9bc5bcd027d80 to your computer and use it in GitHub Desktop.
Save nicoaudy/79fb225c3e50d0dc56f9bc5bcd027d80 to your computer and use it in GitHub Desktop.
vscode user setting
{
"workbench.colorTheme": "Slime",
"workbench.activityBar.visible": false,
"explorer.openEditors.visible": 0,
"workbench.statusBar.visible": false,
"editor.fontFamily": "Operator Mono",
"editor.fontSize": 13,
"editor.fontLigatures": true,
"editor.formatOnSave": true,
"editor.minimap.enabled": false,
"vim.easymotion": true,
"vim.sneak": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.insertModeKeyBindings": [
{
"before": [
"j",
"j"
],
"after": [
"<Esc>"
]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [
"<leader>",
"d"
],
"after": [
"d",
"d"
]
},
{
"before": [
"<C-n>"
],
"commands": [
":nohl"
]
}
],
"vim.leader": ",",
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment