Skip to content

Instantly share code, notes, and snippets.

@TheMY3
Created November 20, 2017 15:55
Show Gist options
  • Save TheMY3/b7aab1b59e3325e508398cfe4dbb9d90 to your computer and use it in GitHub Desktop.
Save TheMY3/b7aab1b59e3325e508398cfe4dbb9d90 to your computer and use it in GitHub Desktop.
VCS User Settings
{
// Visuals.
"workbench.colorTheme": "Material Theme",
"workbench.iconTheme": "eq-material-theme-icons",
"editor.fontSize": 13,
// Make it more cleaner.
"explorer.openEditors.visible": 0,
"workbench.activityBar.visible": true,
"editor.minimap.enabled": false,
// Vim.
"vim.disableExtension": false,
"vim.useSystemClipboard": true,
"vim.cmdLineInitialColon": true,
"vim.visualstar": true,
"vim.useCtrlKeys": true,
"vim.handleKeys": {
"<C-f>": false,
"<C-h>": false
},
"vim.insertModeKeyBindings": [
{
"before": ["j", "j"],
"after": ["<Esc>"]
}
],
"vim.otherModesKeyBindingsNonRecursive": [
{
"before":["<leader>", "<space>"],
"after":[],
"commands": [
{
"command": ":nohl",
"args": []
}
]
}
],
// Vim settings
"editor.lineNumbers": "relative",
"vim.leader": ",",
"vim.hlsearch": true,
"vim.incsearch": true,
"vim.ignorecase": true,
"vim.easymotion": true,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment