Skip to content

Instantly share code, notes, and snippets.

@chrisolsen
Created February 4, 2019 16:08
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 chrisolsen/827d2dd80eb5b41f27a473fa18609cc7 to your computer and use it in GitHub Desktop.
Save chrisolsen/827d2dd80eb5b41f27a473fa18609cc7 to your computer and use it in GitHub Desktop.
vscode settings
{
"vim.easymotion": true,
"vim.sneak": true,
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.insertModeKeyBindings": [
{
"before": [
"j",
"j"
],
"after": [
"<Esc>"
]
}
],
"vim.leader": "<space>",
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false
},
"workbench.startupEditor": "newUntitledFile",
"editor.minimap.enabled": false,
"editor.rulers": [120],
"window.zoomLevel": 1,
"git.autofetch": true,
"python.linting.pylintEnabled": true,
"python.formatting.provider": "yapf",
"python.linting.enabled": true,
"python.linting.banditEnabled": false,
"python.pythonPath": "/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7",
"python.linting.pylamaArgs": [
"--linters=pep8,pyflakes",
"--ignore=E501"
],
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"[go]": {},
"cosmosDB.showSavePrompt": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment