Created
December 11, 2021 07:47
-
-
Save MSMazaya/ecfeecc9b7f2a020b7e515dcdd5acdf0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"C_Cpp.updateChannel": "Insiders", | |
"editor.cursorStyle": "line", | |
"editor.insertSpaces": false, | |
"editor.lineNumbers": "on", | |
"editor.wordSeparators": "/\\()\"':,.;<>~!@#$%^&*|+=[]{}`?-", | |
"editor.wordWrap": "off", | |
"terminal.integrated.fontSize": 16, | |
"workbench.editorAssociations": { | |
"*.ipynb": "jupyter.notebook.ipynb" | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"redhat.telemetry.enabled": true, | |
"[javascriptreact]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"remote.SSH.remotePlatform": { | |
"188.166.237.91": "linux" | |
}, | |
"editor.formatOnSave": true, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "vscode.typescript-language-features" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"terminal.integrated.commandsToSkipShell": [ | |
"language-julia.interrupt" | |
], | |
"julia.symbolCacheDownload": true, | |
"julia.enableTelemetry": false, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"editor.fontFamily": "CaskaydiaCove NF", | |
"editor.fontLigatures": true, | |
"terminal.integrated.fontFamily": "CaskaydiaCove NF", | |
"svelte.enable-ts-plugin": true, | |
"[svelte]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[dart]": { | |
"editor.formatOnSave": true, | |
"editor.formatOnType": true, | |
"editor.rulers": [ | |
80 | |
], | |
"editor.selectionHighlight": false, | |
"editor.suggest.snippetsPreventQuickSuggestions": false, | |
"editor.suggestSelection": "first", | |
"editor.tabCompletion": "onlySnippets", | |
"editor.wordBasedSuggestions": false | |
}, | |
"vim.visualModeKeyBindingsNonRecursive": [ | |
{ | |
"before": [ | |
"<space>" | |
], | |
"commands": [ | |
"whichkey.show" | |
] | |
} | |
], | |
"vim.normalModeKeyBindings": [ | |
{ | |
"before": [ | |
"<C-h>" | |
], | |
"commands": [ | |
"workbench.view.explorer", | |
] | |
}, | |
{ | |
"before": [ | |
"shift+h" | |
], | |
"commands": [ | |
"workbench.action.previousEditor", | |
] | |
}, | |
{ | |
"before": [ | |
"shift+l" | |
], | |
"commands": [ | |
"workbench.action.nextEditor", | |
] | |
}, | |
{ | |
"before": [ | |
"<leader>", | |
"b", | |
"w" | |
], | |
"commands": [ | |
"workbench.action.closeActiveEditor" | |
] | |
}, | |
{ | |
"before": [ | |
"shift+k" | |
], | |
"commands": [ | |
"editor.action.showHover" | |
] | |
}, | |
{ | |
"before": [ | |
"<space>" | |
], | |
"commands": [ | |
"whichkey.show" | |
] | |
} | |
], | |
"whichkey.bindingOverrides": [ | |
{ | |
"keys": "e", | |
"name": "Close side panel", | |
"type": "command", | |
"command": "workbench.action.toggleSidebarVisibility", | |
}, | |
{ | |
"keys": "b.w", | |
"name": "Close current buffer", | |
"type": "command", | |
"command": "workbench.action.closeActiveEditor", | |
}, | |
{ | |
"keys": "b.e", | |
"name": "Close other buffers", | |
"type": "command", | |
"command": "workbench.action.closeOtherEditors", | |
}, | |
{ | |
"keys": "f.s", | |
"name": "Search for a file", | |
"type": "command", | |
"command": "workbench.action.quickOpen", | |
}, | |
{ | |
"keys": "F", | |
"name": "Toggle full screen", | |
"type": "command", | |
"command": "workbench.action.toggleFullScreen", | |
}, | |
{ | |
"keys": "/", | |
"name": "Comment Lines", | |
"type": "command", | |
"command": "editor.action.commentLine", | |
}, | |
], | |
"editor.cursorBlinking": "solid", | |
"emmet.syntaxProfiles": { | |
"vue-html":"html", | |
"vue":"html" | |
}, | |
"tailwindCSS.includeLanguages": { | |
"vue": "html", | |
"vue-html": "html", | |
"svelte":"html" | |
}, | |
"tabnine.experimentalAutoImports": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment