-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigFiles.ps1
63 lines (63 loc) · 2.16 KB
/
configFiles.ps1
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
$configItems = @{
".gitignore" = @{
"syncDir" = ".";
"fileLocation" = ".gitignore"
};
"WT_settings.json" = @{
"fileName" = "settings.json";
"syncDir" = "windowsTerminal";
"fileLocation" = "AppData\Local\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState\settings.json"
};
"crt.hlsl" = @{
"syncDir" = "windowsTerminal";
"fileLocation" = "AppData\Local\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState\crt.hlsl"
};
"ultra-detailed-nebula-abstract-wallpaper-4.jpg" = @{
"syncDir" = "windowsTerminal";
"fileLocation" = "AppData\Local\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState\ultra-detailed-nebula-abstract-wallpaper-4.jpg"
};
".gitconfig" = @{
"syncDir" = ".";
"fileLocation" = ".gitconfig"
};
".npmrc" = @{
"syncDir" = ".";
"fileLocation" = ".npmrc"
};
".gitmessage" = @{
"syncDir" = ".";
"fileLocation" = ".gitmessage"
};
"extensions.json" = @{
"syncDir" = "vscode";
"fileLocation" = ".vscode\extensions\extensions.json"
};
"settings.json" = @{
"syncDir" = "vscode";
"fileLocation" = "AppData\Roaming\Code\User\settings.json"
};
"snippets" = @{
"syncDir" = "vscode";
"fileLocation" = "AppData\Roaming\Code\User\snippets\*"
};
"keybindings.json" = @{
"syncDir" = "vscode";
"fileLocation" = "AppData\Roaming\Code\User\keybindings.json"
};
"Microsoft.PowerShell_profile.ps1" = @{
"syncDir" = "powershell";
"fileLocation" = "Documents\PowerShell\Microsoft.PowerShell_profile.ps1"
};
"Microsoft.VSCode_profile.ps1" = @{
"syncDir" = "powershell";
"fileLocation" = "Documents\PowerShell\Microsoft.VSCode_profile.ps1"
};
"schwarzie2478.omp.json" = @{
"syncDir" = "powershell";
"fileLocation" = "Documents\PowerShell\schwarzie2478.omp.json"
};
"terminal.png" = @{
"syncDir" = "powershell";
"fileLocation" = "Documents\PowerShell\terminal.png"
};
}