Skip to content

Instantly share code, notes, and snippets.

@surajitbasak109
Created August 11, 2019 22:39
Show Gist options
  • Save surajitbasak109/c9c3629ef4393035c85d07351907e2ef to your computer and use it in GitHub Desktop.
Save surajitbasak109/c9c3629ef4393035c85d07351907e2ef to your computer and use it in GitHub Desktop.
{
"editor.fontFamily": "'Operator Mono', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"editor.wordWrap": "on",
"blade.format.enable": true, // if you would like to enable blade format
"vim.easymotion": true,
"vim.sneak": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.leader": "<space>",
"vim.insertModeKeyBindings": [
{
"before": [
"j",
"k"
],
"after": [
"<Esc>"
]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [
"<leader>",
"d"
],
"after": [
"d",
"d"
]
},
{
"before": [
"<C-n>"
],
"commands": [
":nohl"
]
}
{
"before": [
"<leader>",
"w"
],
"commands": [
":w"
]
}
],
"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