Skip to content

Instantly share code, notes, and snippets.

@UncleKo
Created November 6, 2021 03:06
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 UncleKo/ba0987baef10511cc41c7c5f8cb42c89 to your computer and use it in GitHub Desktop.
Save UncleKo/ba0987baef10511cc41c7c5f8cb42c89 to your computer and use it in GitHub Desktop.
settings.json
{
"editor.fontFamily": "Input Mono",
"editor.wordWrap": "on",
"explorer.openEditors.visible": 0,
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"javascript": "html",
"vue-html": "html",
"vue": "html"
},
"vim.insertModeKeyBindings": [
{
"before": [
",",
"e"
],
"after": [
"<Esc>"
]
}
],
// "vim.visualModeKeyBindingsNonRecursive": [
// {
// "before": [",","e"],
// "after": ["<Esc>"]
// }
// ],
"vim.normalModeKeyBindingsNonRecursive": [
// {
// "before": ["<space>"],
// "after": [":"]
// },
{
"before": [
"<c-a>"
],
"after": [
"g",
"g",
"v",
"G"
]
},
// to use default undo/redo instead of vim plugin's
{
"before": [
"u"
],
"after": [],
"commands": [
{
"command": "undo"
}
]
},
{
"before": [
"<c-r>"
],
"after": [],
"commands": [
{
"command": "redo"
}
]
}
],
// "terminal.integrated.shell.windows": "c:\\program files\\git\\bin\\bash.exe",
// "terminal.integrated.shell.windows": "c:\\windows\\system32\\wsl.exe",
// "workbench.panel.location": "bottom",
"extensions.autoUpdate": false,
"editor.tabSize": 2,
// "editor.detectIndentation": false,
"html.autoClosingTags": false,
"editor.tabCompletion": "on",
"workbench.settings.editor": "json",
// "workbench.settings.openDefaultSettings": true,
// "terminal.integrated.rendererType": "dom",
"python.linting.pylintArgs": [
"--load-plugins=pylint_django"
],
"terminal.integrated.rendererType": "dom",
"terminal.integrated.shell.linux": "/bin/zsh",
"vsicons.dontShowNewVersionMessage": true,
"update.mode": "manual",
"workbench.iconTheme": "vscode-icons",
"python.pythonPath": "/usr/bin/python3",
"workbench.colorTheme": "Slime",
// "window.menuBarVisibility": "classic",
"explorer.confirmDragAndDrop": false,
"workbench.editorAssociations": {
"*.ipynb": "jupyter.notebook.ipynb"
},
"editor.detectIndentation": false,
"vim.timeout": 300,
"python.defaultInterpreterPath": "/usr/bin/python3",
// "python.formatting.provider": "black",
// "editor.formatOnSave": true,
// "python.pythonPath": "C:\\Users\\Ko\\AppData\\Local\\Programs\\Python\\Python37",
// "code-runner.executorMap": {
// "python": "$pythonPath -u $fullFileName"
// },
// "code-runner.clearPreviousOutput": true,
// "code-runner.showExecutionMessage": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment