-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatac_evo.sublime-project
78 lines (76 loc) · 2.19 KB
/
atac_evo.sublime-project
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
{
"build_systems":
[
{
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"name": "Anaconda Python Builder",
"selector": "source.python",
"shell_cmd": "\"python\" -u \"$file\""
}
],
"file_exclude_patterns":
[
"data",
"env",
"dnase",
"scATAC"
],
"folders":
[
{
"path": "."
}
],
"settings":
{
// This is the block the plugin adds to your project file
"rsync_ssh":
{
// To use non-standard ssh specify the path here
"ssh_binary": "/usr/local/bin/ssh",
// To disable sync on save set 'sync_on_save' to false
"sync_on_save": true,
// Rsync options
"options":
[
"--delete",
// Override how we handle permissions, useful for platforms that does not support Unix permissions.
// Here we tell rsync to use the umask on the destination to set the permissions
"--no-perms", "--chmod=ugo=rwX"
],
// Stuff we do not want rsync to copy
"excludes":
[
".git*",
"_build",
"blib",
"Build",
"env"
],
// Servers we want to sync to
"remotes":
{
// Each folder from the project will be added here
".":
[
{
// You can disable any destination by setting this value to 0
"enabled": 1,
// Stuff we do not want rsync to copy, but just for this destination
"excludes":
[
],
// ssh options
"remote_host": "spinoza",
"remote_path": "/home/harnett/Atac_evo",
"remote_port": 22,
"remote_user": "harnett",
// Run commands before and after rsync
"remote_pre_command": "",
"remote_post_command": ""
}
]
}
}
}
}