-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathfig.config.ts
More file actions
73 lines (73 loc) 路 1.37 KB
/
Copy pathfig.config.ts
File metadata and controls
73 lines (73 loc) 路 1.37 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
61
62
63
64
65
66
67
68
69
70
71
72
73
export default {
platforms: {
'darwin': {
aspects: [
'meta',
'backup',
'dotfiles',
'fonts',
'homebrew',
'node',
'karabiner',
'launchd',
'ruby',
'shell',
'ssh',
'userscripts',
'nvim',
'cron',
'automount',
'defaults',
] as const,
variables: {
pinentryProgram: '/opt/homebrew/bin/pinentry-curses',
},
},
'linux': {
aspects: [
'meta',
'dotfiles',
'locale',
'pacman',
'aur',
'bitcoin',
'avahi',
'shell',
'sshd',
'systemd',
'interception',
'node',
'nvim',
] as const,
variables: {},
},
'linux.debian': {
aspects: [
'meta',
'apt',
'locale',
'vm',
'dotfiles',
'node',
'shell',
'nvim',
] as const,
variables: {},
},
},
profiles: {
personal: {
pattern: '/^(?:latina|huertas)(?:\\b|$)/i',
variables: {},
},
work: {
pattern: '/^COMP-KTW7Q4C5JH/i',
variables: {},
},
},
variables: {
figManaged:
'vim: set nomodifiable : DO NOT EDIT - edit template source instead (芦file禄) or use `:set modifiable` to force.',
pinentryProgram: '/usr/bin/pinentry-curses',
},
};