-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathConda (Windows).sublime-settings
42 lines (33 loc) · 1.44 KB
/
Conda (Windows).sublime-settings
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
// Default Windows settings for sublime-text-conda:
{
// executable is the path to anaconda's python
// this python executable is used in order to find conda
"executable": "~\\Anaconda3\\python.exe",
// Directory in which the conda envs are stored
// Default location is the user's home directory
"environment_directory": "~\\Anaconda3\\envs\\",
// System architecture for Python installation
// options: 32 or 64 bit
"architecture": "64",
// configuration is the path to conda's configuration file
"configuration": "~\\.condarc",
// when true, the scripts will be run through the shell
// If your code has a GUI (e.g. a matplotlib plot),
// this needs to be true, otherwise Windows suppresses it.
"run_through_shell": false,
// when true, the script execution will be handed over to
// the pythonw executable, instead of python
"use_pythonw": false,
// open repl in second row tab below current file,
// closing any existing tabs in that area
// assumes files are kept in group 0 (typical)
"repl_open_row": false,
// when opening a repl using repl_open_row, close any
// existing conda repls in the second row first
"repl_row_close_existing": false,
// save the current file (if dirty) when opening repl
"repl_save_dirty": true,
// syntax highlighting for Open REPL command
// choice between 'python' and 'plaintext'
"repl_syntax": "python"
}