Last active
July 11, 2019 01:44
-
-
Save marutanm/78ba4cdd4099a343abbc53310f211078 to your computer and use it in GitHub Desktop.
VSCode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"vim.leader": " ", | |
"vim.hlsearch": true, | |
"vim.visualstar": true, | |
"vim.whichwrap": "h,l,<,>,[,]", | |
"vim.normalModeKeyBindingsNonRecursive": [ | |
{ | |
"before": [";"], | |
"after": [":"] | |
}, | |
{ | |
"before": [":"], | |
"after": [";"] | |
}, | |
{ | |
"before": ["j"], | |
"after": ["g", "j"] | |
}, | |
{ | |
"before": ["k"], | |
"after": ["g", "k"] | |
}, | |
{ | |
"before": ["f"], | |
"after": ["leader", "leader", "f"] | |
}, | |
{ | |
"before": ["<leader>", "<leader>"], | |
"after": [], | |
"commands": [ | |
{ | |
"command": "workbench.action.quickOpen", | |
"args": [] | |
} | |
] | |
}, | |
], | |
"vim.normalModeKeyBindings": [ | |
{ | |
"before": ["<Esc>"], | |
"commands": [":nohlsearch"] | |
}, | |
{ | |
"before": ["<C-[>"], | |
"commands": [":nohlsearch"] | |
}, | |
{ | |
"before": ["<leader>", "/"], | |
"after": [], | |
"commands": [ | |
{ | |
"command": "actions.find", | |
"args": [] | |
} | |
] | |
}, | |
{ | |
"before": [ | |
"<Enter>" | |
], | |
"commands": [ | |
"editor.action.insertLineAfter" | |
] | |
}, | |
{ | |
"before": ["<BS>", "<BS>"], | |
"commands": [ | |
"workbench.action.files.save", | |
] | |
} | |
], | |
"vim.visualModeKeyBindingsNonRecursive": [ | |
{ | |
"before": [ | |
";" | |
], | |
"after": [ | |
":" | |
] | |
}, | |
{ | |
"before": [ | |
":" | |
], | |
"after": [ | |
";" | |
] | |
} | |
], | |
"vim.easymotion": true, | |
"vim.easymotionMarkerBackgroundColor": "rgba(0, 0, 0, 0.7)", | |
"vim.easymotionMarkerForegroundColorOneChar": "yellow", | |
"vim.easymotionMarkerForegroundColorTwoChar": "pink", | |
"vim.easymotionMarkerFontFamily": "Menlo", | |
"vim.easymotionMarkerWidthPerChar": 12, | |
"vim.easymotionMarkerHeight": 15, | |
"vim.easymotionMarkerFontSize": "15", | |
"vim.easymotionMarkerYOffset": 8 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment