-
Notifications
You must be signed in to change notification settings - Fork 20
/
jp.settings
46 lines (44 loc) · 1.42 KB
/
jp.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
configatron.configure_from_hash :my =>
{
:unix_style_devtools_root => '~/repositories/developwithpassion/devtools',
:twitter_token_folder => [configatron.core.home,%w[repositories developwithpassion twitter_tokens]].as_glob_pattern,
:ssh_folder => [configatron.core.home, %w[repositories developwithpassion ssh]].as_glob_pattern,
:main_ssh_key => 'developwithpassion',
:windows =>
{
:paths =>
{
:win_style =>
{
:ahk_spy => 'C:\utils\autohotkey\AU3_Spy.exe',
:process_explorer => 'C:\utils\sysinternals\procexp.exe',
:divvy => 'C:\utils\divvy\Divvy.exe',
:camrec => 'C:\utils\camtasia_studio\CamRecorder.exe',
:msys => 'C:\utils\mingw\msys\1.0\msys.bat',
:ahk_scripts => 'C:\users\jp\repositories\developwithpassion\devtools\windows\autohotkey\ahk*.ahk',
},
:unix_style =>
{
:mingw => '/c/utils/mingw',
:vim => '/c/utils/vim/vim73'
}
}
},
:github =>
{
:email => '[email protected]',
:full_name => 'Jean-Paul S. Boodhoo',
:user => 'developwithpassion'
}
}
expand do
copy_to [configatron.core.home,'.ssh'].as_glob_pattern do
contents configatron.my.ssh_folder
end
end
if configatron.core.is_osx
specific_folders = [configatron.core.home,%w[repositories developwithpassion mac_library_preferences]].as_glob_pattern
copy_to configatron.core.home do
all_folders_in specific_folders
end
end