Skip to content

Instantly share code, notes, and snippets.

@iguoli
Last active March 5, 2020 15:01
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 iguoli/50fd7b27173fcf97442ec6eec470872a to your computer and use it in GitHub Desktop.
Save iguoli/50fd7b27173fcf97442ec6eec470872a to your computer and use it in GitHub Desktop.
VSCode user settings
[
{
"key": "tab",
"command": "selectNextSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
},
{
"key": "shift+tab",
"command": "selectPrevSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
},
]
{
"workbench.colorTheme": "Monokai",
"workbench.fontAliasing": "auto",
"vim.leader": ",",
"vim.insertModeKeyBindings": [
{
"before": ["<leader>", ","],
"after": ["<Esc>"]
}
],
"vim.normalModeKeyBindings": [
{
"before": [";"],
"after": [":"]
}
],
"editor.lineNumbers": "relative",
"editor.fontFamily": "Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 14,
"python.linting.flake8Args": [
"--ignore='E501'"
],
// for windows platform
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment