Skip to content

Instantly share code, notes, and snippets.

@arsaccol
Created December 12, 2019 23:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arsaccol/08bd0cae80607772d33772eb71da2a76 to your computer and use it in GitHub Desktop.
Save arsaccol/08bd0cae80607772d33772eb71da2a76 to your computer and use it in GitHub Desktop.
settings.json file for VS Code. Location in Windows is: <user folder>/AppData/Roaming/Code/User/ Location in Ubuntu is: ~/.config/Code/User/
{
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"workbench.iconTheme": "vscode-icons",
"workbench.tree.indent": 16,
"vsicons.dontShowNewVersionMessage": true,
"files.eol": "\n",
"window.title": "${dirty}${activeEditorMedium}${separator}${rootName}${separator}${appName}",
"window.menuBarVisibility": "default",
"workbench.sideBar.location": "right",
"vim.handleKeys": {
"<C-b>": false,
},
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["5", "5"],
"after": ["%"]
}
],
"vim.insertModeKeyBindingsNonRecursive": [
{
"before": ["<CR>"],
"after": ["<Nop>"]
},
{
"before": ["<Esc>"],
"after": ["<Nop>"]
},
{
"before": ["<C-[>"],
"after": ["<Nop>"]
},
{
"before": ["j", "j"],
"after": ["<CR>"]
},
{
"before": ["j", "k"],
"after": ["<Esc>"]
}
],
"editor.lineNumbers": "relative",
"breadcrumbs.enabled": true,
"editor.minimap.enabled": false,
"workbench.statusBar.visible": true,
"workbench.activityBar.visible": false,
"editor.fontSize": 12,
"editor.fontFamily": "Hack, Consolas, 'Courier New', monospace"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment