File size: 3,191 Bytes
cfda611 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
{
"python.defaultInterpreterPath": "/home/zeus/miniconda3/envs/cloudspace/bin/python",
"jupyter.kernels.filter": [
{
"path": "/commands/python3",
"type": "pythonEnvironment"
},
{
"path": "/commands/python",
"type": "pythonEnvironment"
},
{
"path": "/bin/python3.10",
"type": "pythonEnvironment"
},
{
"path": "/usr/bin/python3.10",
"type": "pythonEnvironment"
},
{
"path": "/bin/python3",
"type": "pythonEnvironment"
},
{
"path": "/usr/bin/python3",
"type": "pythonEnvironment"
},
{
"path": "/bin/python3.8",
"type": "pythonEnvironment"
},
{
"path": "/usr/bin/python3.8",
"type": "pythonEnvironment"
},
{
"path": "/home/zeus/miniconda3/bin/python",
"type": "pythonEnvironment"
}
],
"jupyter.kernels.excludePythonEnvironments": [
"/commands/python3",
"/commands/python",
"/bin/python3.10",
"/usr/bin/python3.10",
"/bin/python3",
"/usr/bin/python3",
"/home/zeus/miniconda3/bin/python"
],
"workbench.startupEditor": "none",
"python.terminal.activateEnvironment": false,
"terminal.integrated.drawBoldTextInBrightColors": false,
"terminal.integrated.gpuAcceleration": "on",
"terminal.integrated.localEchoLatencyThreshold": 0,
"terminal.integrated.localEchoEnabled": "off",
"terminal.integrated.localEchoStyle": "#000000",
"remote.autoForwardPorts": false,
"jupyter.notebookFileRoot": "${workspaceFolder}",
"terminal.integrated.enableMultiLinePasteWarning": "never",
"terminal.integrated.showTerminalConfigPrompt": false,
"files.exclude": {
"venv": true,
"lightning-annotations.json": true,
".lightning-app-sync": true,
".lighting-app-sync": true,
".lightning-app-run": true,
"**/*.lightning_upload": true,
".ssh*/**": true,
".conda*/**": true,
".config*/**": true,
".npm*/**": true,
".nvm*/**": true,
".bower*/**": true,
".ipython": true,
".local*/**": true,
".oh-my-zsh*/**": true,
"**/.cache/**": true,
"miniconda3": true,
".condarc": true,
".gitconfig": true,
".hushlogin": true,
".profile": true,
".screenrc": true,
".sudo_as_admin_successful": true,
".zcompdump*": true,
".bash_history": true,
".bashrc": true,
".zsh_history": true,
".zshrc": true,
".zshenv": true,
".zlogin": true,
".zprofile": true,
".zlogout": true,
".python_history": true,
".lightningignore": true,
".nv": true,
".docker": true,
".jupyter": true,
".lightning": true,
".vscode": true,
".vscode/**": true,
".wget-hsts": true,
".vscode-server/**": true,
".vscode-server-insiders/**": true,
".tmplaigit": true,
".viminfo": true,
".idea/**": true,
".java/**": true,
".dotnet/**": true,
"**/node_modules/**": true,
"**/__pycache__/**": true,
"**/.tmp_versions/**": true,
"**/.yarn/**": true,
"**/__pypackages__/**": true,
"**/*_cache": true
},
"files.associations": {
"*.studiorc": "shellscript"
},
"files.enableTrash": false
}
|