Skip to content

Instantly share code, notes, and snippets.

@codequokka
Created December 25, 2020 08:37
Show Gist options
  • Save codequokka/0e836b170c6e378cf8887014ad9acf65 to your computer and use it in GitHub Desktop.
Save codequokka/0e836b170c6e378cf8887014ad9acf65 to your computer and use it in GitHub Desktop.
{
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Solarized Dark",
"files.insertFinalNewline": true,
"terminal.integrated.commandsToSkipShell": [
"-workbench.action.quickOpen",
"-workbench.action.terminal.focusFindWidget"
],
// Vim
"vim.hlsearch": true,
"vim.easymotion": true,
"vim.incsearch": true,
// "files.associations": {
// "**/*.yml": "ansible"
// },
// Completion
// Controls if quick suggestions should show up while typing
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
// Controls the delay in ms after which quick suggestions will show up
"editor.quickSuggestionsDelay": 0,
"workbench.editor.enablePreviewFromQuickOpen": false,
"terminal.integrated.fontFamily": "'MesloLGS NF'",
"statusbarerror.wholeLine.show": true,
"python.jediEnabled": false,
"editor.formatOnSave": true,
"autoDocstring.docstringFormat": "numpy",
"python.linting.mypyEnabled": true,
// "yaml.schemas": {
// "https://json.schemastore.org/ansible-playbook": "playbooks/*.yml"
// },
"editor.minimap.enabled": false,
"editor.lineNumbers": "relative",
"workbench.editor.enablePreview": false,
"vim.foldfix": true,
"http.proxyStrictSSL": false,
"remote.SSH.remotePlatform": {
"default": "linux",
"esx4": "linux",
"woscnrd001": "linux"
},
"terminal.integrated.fontSize": 16,
"editor.fontFamily": "'MesloLGS NF'",
"editor.cursorSmoothCaretAnimation": true,
"workbench.list.smoothScrolling": true,
"editor.smoothScrolling": true,
"vs-kubernetes": {
"vs-kubernetes.draft-path.linux": "/home/nbchk/.vs-kubernetes/tools/draft/linux-amd64/draft"
},
"editor.fontSize": 15
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment