forked from robballou/sublimetext-sshconfig
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSSH Config.sublime-settings
32 lines (30 loc) · 1.14 KB
/
SSH Config.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
{
"default_file_locations": {
"windows": {
"ssh_config": "%USERPROFILE%\\.ssh\\config",
"sshd_config": "%PROGRAMDATA%\\ssh\\sshd_config",
"known_hosts": "%USERPROFILE%\\.ssh\\known_hosts",
"authorized_keys": "%USERPROFILE%\\.ssh\\authorized_keys",
},
"osx": {
"ssh_config": "~/.ssh/config",
"sshd_config": "/etc/ssh/sshd_config",
"known_hosts": "~/.ssh/known_hosts",
"authorized_keys": "~/.ssh/authorized_keys",
},
"linux": {
"ssh_config": "~/.ssh/config",
"sshd_config": "/etc/ssh/sshd_config",
"known_hosts": "~/.ssh/known_hosts",
"authorized_keys": "~/.ssh/authorized_keys",
},
},
// A map of file types to their place on disk to override
// the default locations
// Map keys: ssh_config, sshd_config, known_hosts,
// authorized_keys
"file_locations": null,
// Tell the "Open" command for SSH Config to apply the syntax
// highlighting, even if the file extension is not configured.
"force_ssh_config_syntax": true,
}