Last active
October 15, 2023 08:23
-
-
Save john012343210/f328e8d60859667ff8b91e1e5f8dcd2a to your computer and use it in GitHub Desktop.
VSC prefer setting Json
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
{ | |
"workbench.colorTheme": "Default High Contrast", | |
"github.copilot.enable": { | |
"*": true, | |
"plaintext": true, | |
"markdown": true, | |
"scminput": false, | |
"yaml": false, | |
"ini": false | |
}, | |
"editor.fontLigatures": false, | |
"editor.lineHeight": 12, | |
"editor.inlineSuggest.enabled": true, | |
"editor.accessibilitySupport": "off", | |
"editor.fontSize": 16, | |
"notebook.lineNumbers": "on", | |
"notebook.diff.overviewRuler": true, | |
"notebook.output.scrolling": true, | |
"notebook.insertToolbarLocation": "notebookToolbar", | |
"notebook.showCellStatusBar": "hidden", | |
"notebook.cellToolbarLocation": { | |
"jupyter-notebook": "hidden" | |
}, | |
"notebook.globalToolbar": false, | |
"notebook.consolidatedRunButton": true, | |
"editor.unicodeHighlight.allowedCharacters": { | |
")": true, | |
"(": true, | |
":": true | |
}, | |
"window.title": "${rootName}", | |
"terminal.integrated.defaultProfile.windows": "Command Prompt", | |
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\cmd.exe", | |
"terminal.integrated.shellArgs.windows": ["/K", "C:\\Users\\whouse\\AppData\\Local\\anaconda3\\Scripts\\activate.bat C:\\Users\\whouse\\AppData\\Local\\anaconda3"], | |
"python.condaPath": "C:\\Users\\whouse\\AppData\\Local\\anaconda3\\Scripts\\conda.exe", | |
"terminal.integrated.cwd": "${fileDirname}", | |
"window.zoomLevel": 1, | |
"editor.guides.indentation": true, | |
"workbench.colorCustomizations": { | |
"editorIndentGuide.background1": "#3e3e3e" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment