Skip to content

Instantly share code, notes, and snippets.

@matthewjberger
Last active February 17, 2017 21:19
Show Gist options
  • Save matthewjberger/68a046df405627c9d6839259c606a660 to your computer and use it in GitHub Desktop.
Save matthewjberger/68a046df405627c9d6839259c606a660 to your computer and use it in GitHub Desktop.
vscode settings
{
// Use the hack font
"editor.fontFamily": "Hack",
// Font size
"editor.fontSize": 18,
// Tabs are equivalent to this many spaces
"editor.tabSize": 4,
// Insert spaces instead of tabs
"editor.insertSpaces": true,
// Blink the cursor
"editor.cursorBlinking": "blink",
// Specifies path to /src directory of local copy of Rust sources
"rust.rustLangSrcPath": "C:\\Users\\Berger_Ma\\Home\\rust\\src",
"vim.easymotion": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.leader": "<space>",
"vim.insertModeKeyBindings": [
{
"before": ["j", "k"],
"after": ["<Esc>"]
}
],
"vim.otherModesKeyBindings": [
{
"before": [":"],
"after": [],
"commands": [
{
"command": "workbench.action.showCommands",
"args": []
}
]
}
],
"vim.otherModesKeyBindingsNonRecursive": [
{
"before": ["leader", "f", "s"],
"after": [],
"commands": [
{
"command": "workbench.action.files.save",
"args": []
}
]
},
{
"before": [ "leader", "w", "d" ],
"after": [],
"commands": [
{
"command": "workbench.action.closeAllEditors",
"args": []
}
]
},
{
"before": [ "leader", "f", "d" ],
"after": [],
"commands": [
{
"command": "workbench.action.openGlobalSettings",
"args": []
}
]
},
{
"before": [ "leader", "b", "d" ],
"after": [],
"commands": [
{
"command": "workbench.action.closeActiveEditor",
"args": []
}
]
},
{
"before": [ "leader", "T", "s" ],
"after": [],
"commands": [
{
"command": "workbench.action.selectTheme",
"args": []
}
]
},
{
"before": [ "leader", "t", "F" ],
"after": [],
"commands": [
{
"command": "workbench.action.toggleFullScreen",
"args": []
}
]
},
{
"before": [ "leader", "t", "z" ],
"after": [],
"commands": [
{
"command": "workbench.action.toggleZenMode",
"args": []
}
]
},
{
"before": [ "leader", "q", "r" ],
"after": [],
"commands": [
{
"command": "workbench.action.reloadWindow",
"args": []
}
]
},
{
"before": [ "leader", "w", "V" ],
"after": [],
"commands": [
{
"command": "workbench.action.splitEditor",
"args": []
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment