Created
September 17, 2024 12:33
-
-
Save pgkt04/a44bfac6942611938f04c80e4b753f7c to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"workbench.editorAssociations": { | |
"*.ipynb": "jupyter-notebook" | |
}, | |
"terminal.integrated.tabs.enabled": true, | |
"python.analysis.extraPaths": [ | |
".", | |
"./" | |
], | |
"vim.handleKeys": { | |
"<C-y>": false, | |
"<C-x>": false, | |
"<C-c>": false, | |
"<C-v>": false, | |
"<C-f>": false, | |
"<C-d>": true | |
}, | |
"editor.minimap.enabled": true, | |
"editor.suggestSelection": "first", | |
"editor.inlineSuggest.enabled": true, | |
"go.toolsManagement.autoUpdate": true, | |
"[go]": { | |
"editor.formatOnSave": false, | |
"editor.codeActionsOnSave": { | |
"source.organizeImports": "never" | |
}, | |
}, | |
"go.formatTool": "gofmt", | |
"editor.fontLigatures": true, | |
"editor.lineNumbers": "relative", | |
"editor.minimap.autohide": true, | |
"explorer.compactFolders": false, | |
"html.autoClosingTags": false, | |
"editor.lineHeight": 30, | |
"editor.wordWrap": "on", | |
"github.gitAuthentication": false, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment