Skip to content

Instantly share code, notes, and snippets.

@andredtr
Created July 23, 2018 13:12
Show Gist options
  • Select an option

  • Save andredtr/67c97057ef9eeb1adde4ec4dc5555b36 to your computer and use it in GitHub Desktop.

Select an option

Save andredtr/67c97057ef9eeb1adde4ec4dc5555b36 to your computer and use it in GitHub Desktop.
Config Vim no Vs Code
{
"workbench.colorTheme": "Material Theme Darker High Contrast",
"materialTheme.fixIconsRunning": false,
"workbench.iconTheme": "eq-material-theme-icons-darker",
"vim.easymotion": true,
"vim.sneak": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": false,
"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": "<space>",
"vim.cursorStylePerMode" : {
"normal": "underline",
"insert": "line-thin",
"replace": "block-outline"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment