Skip to content

Instantly share code, notes, and snippets.

@Harshakvarma
Created October 10, 2019 17:54
Show Gist options
  • Select an option

  • Save Harshakvarma/68e24b384f32119aa1a85d840c88f3ab to your computer and use it in GitHub Desktop.

Select an option

Save Harshakvarma/68e24b384f32119aa1a85d840c88f3ab to your computer and use it in GitHub Desktop.
Vscode mac
{
"editor.fontFamily": "FiraCode-Retina",
"editor.fontLigatures": true,
"terminal.integrated.shell.osx": "/bin/zsh",
"workbench.activityBar.visible": true,
"window.zoomLevel": 0,
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"workbench.editor.showTabs": true,
"vim.easymotion": true,
"vim.sneak": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": false,
"vim.insertModeKeyBindings": [
{
"before": [
"j",
"j"
],
"after": [
"<Esc>"
]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [
"<leader>",
"d"
],
"after": [
"d",
"d"
]
},
{
"before": [
"<C-n>"
],
"commands": [
":nohl"
]
}
],
"vim.leader": "<space>",
"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