-
Notifications
You must be signed in to change notification settings - Fork 9
/
AnacondaRUST.sublime-settings
56 lines (48 loc) · 1.4 KB
/
AnacondaRUST.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
AnacondaRUST default settings
*/
{
/*
Global linter switch, set this to false to disable AnacondaRUST
linting completely
*/
"anaconda_rust_linting": true,
/*
Global auto-completion switch, set this to false to disable AnacondaRUST
code auto-completion completely
*/
"anaconda_rust_autocompletion": true,
/*
AnacondaRUST binary paths
Set the location of rustc, racer and rustfmt in your system
Note: if this settings are left empty Anaconda will try to use
the ones that are in your PATH
*/
"rustc_binary_path": "",
"racer_binary_path": "",
"rustfmt_binary_path": "",
/*
Set the path to your local version of rust source code
this is necessary for racer to give you proper standard
library auto completion.
Note: if this setting is left empty Anaconda will try to use
the environment variable RUST_SRC_PATH
*/
"rust_src_path": "",
/*
Set this to false if you don't want anaconda to format
your files when you save them
*/
"rust_format_on_save": true,
/*
This id the default time that anaconda will wait for rustfmt to finish
formatting files, after that time it will return a timeout failure
*/
"rust_rustfmt_timeout": 1, // seconds
/*
Path to the rustfmt.toml configuration file
If empty, anaconda_rust uses the project directory if a project is
active or the directory where current file is being edited
*/
"rust_rustfmt_config_path": ""
}