-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json.example
More file actions
60 lines (60 loc) · 1.17 KB
/
Copy pathconfig.json.example
File metadata and controls
60 lines (60 loc) · 1.17 KB
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
{
"user": {
"name": "Your Name",
"email": "your.email@example.com",
"editor": "nvim",
"browser": "open",
"terminal": "Terminal"
},
"git": {
"signing_key": "~/.ssh/id_ed25519.pub",
"gpg_sign": false
},
"ssh": {
"keys": {
"github": "~/.ssh/id_ed25519",
"gitlab": "~/.ssh/id_ed25519",
"personal": "~/.ssh/id_ed25519",
"work": "~/.ssh/id_rsa",
"local": "~/.ssh/id_ed25519"
},
"servers": {
"personal": {
"alias": "my-server",
"host": "example.com",
"user": "user",
"port": 22
},
"work": {
"alias": "work-server",
"host": "work.example.com",
"user": "user",
"port": 22
},
"local_dev": {
"host": "localhost",
"user": "user"
}
}
},
"environment": {
"workspace_dir": "~/workspace",
"projects_dir": "~/projects",
"personal_bin_dir": "~/.local/bin",
"pager": "less"
},
"development": {
"node": {
"npm_prefix": "~/.npm-global"
},
"python": {
"path": ""
},
"go": {
"path": "~/go"
},
"rust": {
"cargo_home": "~/.cargo"
}
}
}