@heyitsiveen/dotfiles 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (94) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +176 -0
  3. package/dist/index.mjs +1445 -0
  4. package/dotfiles/macos/.claude/CLAUDE.md +13 -0
  5. package/dotfiles/macos/.claude/settings.json +38 -0
  6. package/dotfiles/macos/.claude.json +32 -0
  7. package/dotfiles/macos/.config/bat/config +27 -0
  8. package/dotfiles/macos/.config/bat/themes/Vercel.tmTheme +308 -0
  9. package/dotfiles/macos/.config/bat/themes/Vesper.tmTheme +357 -0
  10. package/dotfiles/macos/.config/btop/btop.conf +272 -0
  11. package/dotfiles/macos/.config/btop/themes/Solarized_Dark.theme +89 -0
  12. package/dotfiles/macos/.config/btop/themes/Vercel.theme +89 -0
  13. package/dotfiles/macos/.config/btop/themes/Vesper.theme +89 -0
  14. package/dotfiles/macos/.config/fish/conf.d/00-platform.fish +19 -0
  15. package/dotfiles/macos/.config/fish/conf.d/10-homebrew.fish +33 -0
  16. package/dotfiles/macos/.config/fish/conf.d/20-environment.fish +12 -0
  17. package/dotfiles/macos/.config/fish/conf.d/30-aliases.fish +52 -0
  18. package/dotfiles/macos/.config/fish/conf.d/40-fzf.fish +120 -0
  19. package/dotfiles/macos/.config/fish/conf.d/50-tools.fish +51 -0
  20. package/dotfiles/macos/.config/fish/conf.d/60-tmux.fish +19 -0
  21. package/dotfiles/macos/.config/fish/conf.d/70-tide.fish +31 -0
  22. package/dotfiles/macos/.config/fish/config.fish +30 -0
  23. package/dotfiles/macos/.config/fish/functions/_tide_palette_heyitsiveen.fish +101 -0
  24. package/dotfiles/macos/.config/fish/functions/_tide_palette_vercel.fish +94 -0
  25. package/dotfiles/macos/.config/fish/functions/_tide_palette_vesper.fish +100 -0
  26. package/dotfiles/macos/.config/fish/functions/backup.fish +43 -0
  27. package/dotfiles/macos/.config/fish/functions/fish_greeting.fish +5 -0
  28. package/dotfiles/macos/.config/fish/functions/reload-fish.fish +4 -0
  29. package/dotfiles/macos/.config/fish/functions/tide_palette.fish +21 -0
  30. package/dotfiles/macos/.config/ghostty/config +46 -0
  31. package/dotfiles/macos/.config/nvim/.neoconf.json +15 -0
  32. package/dotfiles/macos/.config/nvim/init.lua +2 -0
  33. package/dotfiles/macos/.config/nvim/lazy-lock.json +42 -0
  34. package/dotfiles/macos/.config/nvim/lazyvim.json +11 -0
  35. package/dotfiles/macos/.config/nvim/lua/config/autocmds.lua +8 -0
  36. package/dotfiles/macos/.config/nvim/lua/config/keymaps.lua +21 -0
  37. package/dotfiles/macos/.config/nvim/lua/config/lazy.lua +72 -0
  38. package/dotfiles/macos/.config/nvim/lua/config/options.lua +13 -0
  39. package/dotfiles/macos/.config/nvim/lua/plugins/colorscheme.lua +12 -0
  40. package/dotfiles/macos/.config/nvim/lua/plugins/editor.lua +366 -0
  41. package/dotfiles/macos/.config/nvim/lua/plugins/example.lua +197 -0
  42. package/dotfiles/macos/.config/nvim/lua/plugins/mason.lua +11 -0
  43. package/dotfiles/macos/.config/nvim/lua/plugins/oxc.lua +64 -0
  44. package/dotfiles/macos/.config/nvim/lua/plugins/ui.lua +123 -0
  45. package/dotfiles/macos/.config/nvim/stylua.toml +3 -0
  46. package/dotfiles/macos/.config/ripgrep/config +9 -0
  47. package/dotfiles/macos/.config/tmux/STATUSBAR REFERENCE.md +1183 -0
  48. package/dotfiles/macos/.config/tmux/keybinds.conf +124 -0
  49. package/dotfiles/macos/.config/tmux/notifications.conf +39 -0
  50. package/dotfiles/macos/.config/tmux/pane.conf +33 -0
  51. package/dotfiles/macos/.config/tmux/popup-window.conf +27 -0
  52. package/dotfiles/macos/.config/tmux/statusbar.conf +281 -0
  53. package/dotfiles/macos/.config/tmux/tmux.conf +94 -0
  54. package/dotfiles/macos/.config/wezterm/wezterm.lua +143 -0
  55. package/dotfiles/windows/.claude/CLAUDE.md +13 -0
  56. package/dotfiles/windows/.claude/settings.json +38 -0
  57. package/dotfiles/windows/.claude.json +32 -0
  58. package/dotfiles/windows/.config/bat/config +27 -0
  59. package/dotfiles/windows/.config/bat/themes/Vercel.tmTheme +308 -0
  60. package/dotfiles/windows/.config/bat/themes/Vesper.tmTheme +357 -0
  61. package/dotfiles/windows/.config/btop/btop.conf +251 -0
  62. package/dotfiles/windows/.config/btop/themes/Solarized_Dark.theme +89 -0
  63. package/dotfiles/windows/.config/btop/themes/Vercel.theme +89 -0
  64. package/dotfiles/windows/.config/btop/themes/Vesper.theme +89 -0
  65. package/dotfiles/windows/.config/nvim/.neoconf.json +15 -0
  66. package/dotfiles/windows/.config/nvim/init.lua +2 -0
  67. package/dotfiles/windows/.config/nvim/lazy-lock.json +42 -0
  68. package/dotfiles/windows/.config/nvim/lazyvim.json +11 -0
  69. package/dotfiles/windows/.config/nvim/lua/config/autocmds.lua +8 -0
  70. package/dotfiles/windows/.config/nvim/lua/config/keymaps.lua +21 -0
  71. package/dotfiles/windows/.config/nvim/lua/config/lazy.lua +72 -0
  72. package/dotfiles/windows/.config/nvim/lua/config/options.lua +13 -0
  73. package/dotfiles/windows/.config/nvim/lua/plugins/colorscheme.lua +12 -0
  74. package/dotfiles/windows/.config/nvim/lua/plugins/editor.lua +366 -0
  75. package/dotfiles/windows/.config/nvim/lua/plugins/example.lua +197 -0
  76. package/dotfiles/windows/.config/nvim/lua/plugins/mason.lua +11 -0
  77. package/dotfiles/windows/.config/nvim/lua/plugins/oxc.lua +64 -0
  78. package/dotfiles/windows/.config/nvim/lua/plugins/ui.lua +123 -0
  79. package/dotfiles/windows/.config/nvim/stylua.toml +3 -0
  80. package/dotfiles/windows/.config/omp-themes/solarized-dark.omp.toml +197 -0
  81. package/dotfiles/windows/.config/omp-themes/vercel.omp.toml +197 -0
  82. package/dotfiles/windows/.config/omp-themes/vesper.omp.toml +197 -0
  83. package/dotfiles/windows/.config/ripgrep/config +9 -0
  84. package/dotfiles/windows/.config/wezterm/wezterm.lua +88 -0
  85. package/dotfiles/windows/powershell/Profile.ps1 +36 -0
  86. package/dotfiles/windows/powershell/functions/Switch-PromptPalette.ps1 +37 -0
  87. package/dotfiles/windows/powershell/functions/backup.ps1 +39 -0
  88. package/dotfiles/windows/powershell/functions/reload-shell.ps1 +8 -0
  89. package/dotfiles/windows/powershell/modules/aliases.ps1 +44 -0
  90. package/dotfiles/windows/powershell/modules/environment.ps1 +13 -0
  91. package/dotfiles/windows/powershell/modules/fzf.ps1 +82 -0
  92. package/dotfiles/windows/powershell/modules/prompt.ps1 +25 -0
  93. package/dotfiles/windows/powershell/modules/tools.ps1 +52 -0
  94. package/package.json +72 -0
@@ -0,0 +1,143 @@
1
+ local wezterm = require 'wezterm'
2
+ local config = {}
3
+
4
+ config.window_close_confirmation = 'NeverPrompt'
5
+
6
+ --! DEFAULT SHELL
7
+ -- config.default_prog = {"pwsh"}
8
+ -- config.default_prog = { 'nu.exe' }
9
+ local target = wezterm.target_triple or ''
10
+ local is_windows = target:find('windows') ~= nil
11
+
12
+ if is_windows then
13
+ local wsl_domains = wezterm.default_wsl_domains()
14
+ if #wsl_domains > 0 then
15
+ config.default_domain = wsl_domains[1].name
16
+ else
17
+ -- Use Windows PowerShell when WSL domains are unavailable.
18
+ config.default_prog = { 'powershell.exe', '-NoLogo' }
19
+ end
20
+ end
21
+
22
+ --! FONT
23
+ config.font = wezterm.font 'JetBrains Mono'
24
+
25
+ --! TAB
26
+ config.enable_tab_bar = false
27
+
28
+ --! WINDOW
29
+ config.window_background_opacity = 0.9
30
+ config.macos_window_background_blur = 20
31
+
32
+ --! CURSOR
33
+ config.default_cursor_style = 'BlinkingBar'
34
+
35
+ --! COLOR SCHEME
36
+ config.color_scheme = 'Solarized Dark (Gogh)'
37
+
38
+ -- Override background for Solarized to match Ghostty
39
+ if config.color_scheme == 'Solarized Dark (Gogh)' then
40
+ config.colors = { background = '#031219' }
41
+ end
42
+
43
+ config.color_schemes = {
44
+ ['Vercel'] = {
45
+ --! The default text color
46
+ foreground = '#fafafa',
47
+ --! The default background color
48
+ background = '#101010',
49
+
50
+ --! Overrides the cell background color when the current cell is occupied by the
51
+ --! cursor and the cursor style is set to Block
52
+ cursor_bg = '#f32882',
53
+ -- Overrides the text color when the current cell is occupied by the cursor
54
+ cursor_fg = '#fafafa',
55
+ --! Specifies the border color of the cursor when the cursor style is set to Block,
56
+ --! or the color of the vertical or horizontal bar when the cursor style is set to
57
+ --! Bar or Underline.
58
+ cursor_border = '#f32882',
59
+
60
+ -- The foreground color of selected text
61
+ -- selection_fg = '#000000',
62
+ -- The background color of selected text
63
+ selection_bg = '#005be7',
64
+ selection_fg = '#fafafa',
65
+
66
+ -- The color of the scrollbar "thumb"; the portion that represents the current viewport
67
+ scrollbar_thumb = '#171717',
68
+
69
+ -- The color of the split lines between panes
70
+ split = '#171717',
71
+
72
+ ansi = {
73
+ '#000000',
74
+ '#fc0036',
75
+ '#29a948',
76
+ '#ffae00',
77
+ '#006aff',
78
+ '#f32882',
79
+ '#00ac96',
80
+ '#feffff',
81
+ },
82
+ brights = {
83
+ '#a8a8a8',
84
+ '#ff8080',
85
+ '#4be15d',
86
+ '#ffae00',
87
+ '#49aeff',
88
+ '#f97ea8',
89
+ '#00e4c4',
90
+ '#fefefe',
91
+ },
92
+ },
93
+ ['Vesper'] = {
94
+ --! The default text color
95
+ foreground = '#FFFFFF',
96
+ --! The default background color
97
+ background = '#101010',
98
+
99
+ --! Overrides the cell background color when the current cell is occupied by the
100
+ --! cursor and the cursor style is set to Block
101
+ cursor_bg = '#FFC799',
102
+ -- Overrides the text color when the current cell is occupied by the cursor
103
+ cursor_fg = '#101010',
104
+ --! Specifies the border color of the cursor when the cursor style is set to Block,
105
+ --! or the color of the vertical or horizontal bar when the cursor style is set to
106
+ --! Bar or Underline.
107
+ cursor_border = '#FFC799',
108
+
109
+ -- The foreground color of selected text
110
+ -- selection_fg = '#000000',
111
+ -- The background color of selected text
112
+ selection_bg = 'rgba(50% 50% 50% 50%)',
113
+
114
+ -- The color of the scrollbar "thumb"; the portion that represents the current viewport
115
+ scrollbar_thumb = 'rgba(50% 50% 50% 50%)',
116
+
117
+ -- The color of the split lines between panes
118
+ split = '#505050',
119
+
120
+ ansi = {
121
+ '#101010',
122
+ '#F5A191',
123
+ '#90B99F',
124
+ '#E6B99D',
125
+ '#ACA1CF',
126
+ '#E29ECA',
127
+ '#EA83A5',
128
+ '#A0A0A0',
129
+ },
130
+ brights = {
131
+ '#7E7E7E',
132
+ '#FF8080',
133
+ '#99FFE4',
134
+ '#FFC799',
135
+ '#B9AEDA',
136
+ '#ECAAD6',
137
+ '#F591B2',
138
+ '#FFFFFF',
139
+ },
140
+ },
141
+ }
142
+
143
+ return config
@@ -0,0 +1,13 @@
1
+ 1. Always interview me in detail using AskUserQuestionTool about literally anything: technical, implementation, UI & UX, concerns, tradeoffs, etc when creating a PRD.md plan or executing plan mode.
2
+ 2. Always ask clarifying questions when there are multiple valid approaches to a task.
3
+ 3. First think through the problem, read the codebase for relevant files.
4
+ 4. Before you make any major changes, check in with me and I will verify the plan.
5
+ 5. Please every step of the way just give me a high level explanation of what changes you made.
6
+ 6. Make every task and code change you do as simple as possible. We want to avoid making any massive or complex changes. Every change should impact as little code as possible. Everything is about simplicity.
7
+ 7. Maintain a documentation file that describes how the architecture of the app works inside and out.
8
+ 8. Never speculate about code you have not opened. If the user references a specific file, you MUST read the file before answering. Make sure to investigate and read relevant files BEFORE answering questions about the codebase. Never make any claims about code before investigating unless you are certain of the correct answer - give grounded and hallucination-free answer.
9
+ 9. Always check attached files and images first before proceeding with any task.
10
+ 10. Always use Context7 MCP when I need library/API documentation, code generation, setup or configuration steps without me having to explicitly ask.
11
+ 11. Always use Exa MCP for web searches, code searches, and research tasks.
12
+ 12. Always use Grep MCP when searching across GitHub repositories for code patterns, implementations, or examples.
13
+ 13. Always use the frontend-design skill when developing any frontend interface or UI components.
@@ -0,0 +1,38 @@
1
+ {
2
+ "permissions": {
3
+ "defaultMode": "plan"
4
+ },
5
+ "statusLine": {
6
+ "type": "command",
7
+ "command": "bun x ccusage statusline",
8
+ "padding": 0
9
+ },
10
+ "enabledPlugins": {
11
+ "shopify-plugin@shopify-ai-toolkit": true,
12
+ "frontend-design@claude-plugins-official": true,
13
+ "superpowers@claude-plugins-official": true,
14
+ "context7@claude-plugins-official": true,
15
+ "code-review@claude-plugins-official": true,
16
+ "feature-dev@claude-plugins-official": true,
17
+ "figma@claude-plugins-official": true,
18
+ "explanatory-output-style@claude-plugins-official": true,
19
+ "learning-output-style@claude-plugins-official": true
20
+ },
21
+ "extraKnownMarketplaces": {
22
+ "shopify-ai-toolkit": {
23
+ "source": {
24
+ "source": "github",
25
+ "repo": "Shopify/shopify-ai-toolkit"
26
+ }
27
+ },
28
+ "claude-plugins-official": {
29
+ "source": {
30
+ "source": "github",
31
+ "repo": "anthropics/claude-plugins-official"
32
+ }
33
+ }
34
+ },
35
+ "outputStyle": "Learning",
36
+ "advisorModel": "opus",
37
+ "skipDangerousModePermissionPrompt": true
38
+ }
@@ -0,0 +1,32 @@
1
+ {
2
+ "mcpServers": {
3
+ "context7": {
4
+ "type": "http",
5
+ "url": "https://mcp.context7.com/mcp"
6
+ },
7
+ "exa": {
8
+ "type": "http",
9
+ "url": "https://mcp.exa.ai/mcp"
10
+ },
11
+ "grep": {
12
+ "type": "http",
13
+ "url": "https://mcp.grep.app"
14
+ },
15
+ "better-auth": {
16
+ "type": "http",
17
+ "url": "https://mcp.chonkie.ai/better-auth/better-auth-builder/mcp"
18
+ },
19
+ "figma": {
20
+ "type": "http",
21
+ "url": "https://mcp.figma.com/mcp"
22
+ },
23
+ "shopify-dev-mcp": {
24
+ "type": "stdio",
25
+ "command": "npx",
26
+ "args": ["-y", "@shopify/dev-mcp@latest"],
27
+ "env": {
28
+ "LIQUID_VALIDATION_MODE": "full"
29
+ }
30
+ }
31
+ }
32
+ }
@@ -0,0 +1,27 @@
1
+ # Bat configuration file
2
+
3
+ # See: https://github.com/sharkdp/bat#configuration-file
4
+
5
+ # Themes
6
+
7
+ # --theme="Vercel"
8
+
9
+ # --theme="Vesper"
10
+
11
+ --theme="Solarized (dark)"
12
+
13
+ # Show line numbers
14
+
15
+ # --style="numbers,changes,header"
16
+
17
+ # Use italic text for comments (if terminal supports it)
18
+
19
+ --italic-text=always
20
+
21
+ # Set the pager
22
+
23
+ --paging=auto
24
+
25
+ # Wrap long lines
26
+
27
+ --wrap=auto
@@ -0,0 +1,308 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>name</key>
6
+ <string>Vercel</string>
7
+ <key>author</key>
8
+ <string>Dotfiles Vercel Theme</string>
9
+ <key>settings</key>
10
+ <array>
11
+ <dict>
12
+ <key>settings</key>
13
+ <dict>
14
+ <key>background</key>
15
+ <string>#101010</string>
16
+ <key>foreground</key>
17
+ <string>#FAFAFA</string>
18
+ <key>caret</key>
19
+ <string>#F32882</string>
20
+ <key>selection</key>
21
+ <string>#005BE7</string>
22
+ <key>selectionBorder</key>
23
+ <string>#006AFF</string>
24
+ <key>lineHighlight</key>
25
+ <string>#171717</string>
26
+ <key>gutter</key>
27
+ <string>#101010</string>
28
+ <key>gutterForeground</key>
29
+ <string>#A8A8A8</string>
30
+ </dict>
31
+ </dict>
32
+ <dict>
33
+ <key>name</key>
34
+ <string>Comment</string>
35
+ <key>scope</key>
36
+ <string>comment, punctuation.definition.comment</string>
37
+ <key>settings</key>
38
+ <dict>
39
+ <key>foreground</key>
40
+ <string>#737373</string>
41
+ <key>fontStyle</key>
42
+ <string>italic</string>
43
+ </dict>
44
+ </dict>
45
+ <dict>
46
+ <key>name</key>
47
+ <string>String</string>
48
+ <key>scope</key>
49
+ <string>string, string.quoted</string>
50
+ <key>settings</key>
51
+ <dict>
52
+ <key>foreground</key>
53
+ <string>#29A948</string>
54
+ </dict>
55
+ </dict>
56
+ <dict>
57
+ <key>name</key>
58
+ <string>Number</string>
59
+ <key>scope</key>
60
+ <string>constant.numeric</string>
61
+ <key>settings</key>
62
+ <dict>
63
+ <key>foreground</key>
64
+ <string>#FFAE00</string>
65
+ </dict>
66
+ </dict>
67
+ <dict>
68
+ <key>name</key>
69
+ <string>Constant</string>
70
+ <key>scope</key>
71
+ <string>constant, constant.language, constant.character</string>
72
+ <key>settings</key>
73
+ <dict>
74
+ <key>foreground</key>
75
+ <string>#FFAE00</string>
76
+ </dict>
77
+ </dict>
78
+ <dict>
79
+ <key>name</key>
80
+ <string>Keyword</string>
81
+ <key>scope</key>
82
+ <string>keyword, keyword.control, keyword.operator.logical</string>
83
+ <key>settings</key>
84
+ <dict>
85
+ <key>foreground</key>
86
+ <string>#F32882</string>
87
+ </dict>
88
+ </dict>
89
+ <dict>
90
+ <key>name</key>
91
+ <string>Storage</string>
92
+ <key>scope</key>
93
+ <string>storage, storage.type, storage.modifier</string>
94
+ <key>settings</key>
95
+ <dict>
96
+ <key>foreground</key>
97
+ <string>#F32882</string>
98
+ </dict>
99
+ </dict>
100
+ <dict>
101
+ <key>name</key>
102
+ <string>Function</string>
103
+ <key>scope</key>
104
+ <string>entity.name.function, meta.function-call, support.function</string>
105
+ <key>settings</key>
106
+ <dict>
107
+ <key>foreground</key>
108
+ <string>#49AEFF</string>
109
+ </dict>
110
+ </dict>
111
+ <dict>
112
+ <key>name</key>
113
+ <string>Class</string>
114
+ <key>scope</key>
115
+ <string>entity.name.class, entity.name.type, support.class, support.type</string>
116
+ <key>settings</key>
117
+ <dict>
118
+ <key>foreground</key>
119
+ <string>#00AC96</string>
120
+ </dict>
121
+ </dict>
122
+ <dict>
123
+ <key>name</key>
124
+ <string>Variable</string>
125
+ <key>scope</key>
126
+ <string>variable, variable.other</string>
127
+ <key>settings</key>
128
+ <dict>
129
+ <key>foreground</key>
130
+ <string>#FAFAFA</string>
131
+ </dict>
132
+ </dict>
133
+ <dict>
134
+ <key>name</key>
135
+ <string>Variable Parameter</string>
136
+ <key>scope</key>
137
+ <string>variable.parameter</string>
138
+ <key>settings</key>
139
+ <dict>
140
+ <key>foreground</key>
141
+ <string>#00E4C4</string>
142
+ </dict>
143
+ </dict>
144
+ <dict>
145
+ <key>name</key>
146
+ <string>Property</string>
147
+ <key>scope</key>
148
+ <string>variable.other.property, meta.property-name, support.type.property-name</string>
149
+ <key>settings</key>
150
+ <dict>
151
+ <key>foreground</key>
152
+ <string>#FAFAFA</string>
153
+ </dict>
154
+ </dict>
155
+ <dict>
156
+ <key>name</key>
157
+ <string>Operator</string>
158
+ <key>scope</key>
159
+ <string>keyword.operator</string>
160
+ <key>settings</key>
161
+ <dict>
162
+ <key>foreground</key>
163
+ <string>#A8A8A8</string>
164
+ </dict>
165
+ </dict>
166
+ <dict>
167
+ <key>name</key>
168
+ <string>Punctuation</string>
169
+ <key>scope</key>
170
+ <string>punctuation</string>
171
+ <key>settings</key>
172
+ <dict>
173
+ <key>foreground</key>
174
+ <string>#A8A8A8</string>
175
+ </dict>
176
+ </dict>
177
+ <dict>
178
+ <key>name</key>
179
+ <string>Tag</string>
180
+ <key>scope</key>
181
+ <string>entity.name.tag</string>
182
+ <key>settings</key>
183
+ <dict>
184
+ <key>foreground</key>
185
+ <string>#49AEFF</string>
186
+ </dict>
187
+ </dict>
188
+ <dict>
189
+ <key>name</key>
190
+ <string>Attribute</string>
191
+ <key>scope</key>
192
+ <string>entity.other.attribute-name</string>
193
+ <key>settings</key>
194
+ <dict>
195
+ <key>foreground</key>
196
+ <string>#00E4C4</string>
197
+ </dict>
198
+ </dict>
199
+ <dict>
200
+ <key>name</key>
201
+ <string>Markdown Heading</string>
202
+ <key>scope</key>
203
+ <string>markup.heading, entity.name.section</string>
204
+ <key>settings</key>
205
+ <dict>
206
+ <key>foreground</key>
207
+ <string>#49AEFF</string>
208
+ <key>fontStyle</key>
209
+ <string>bold</string>
210
+ </dict>
211
+ </dict>
212
+ <dict>
213
+ <key>name</key>
214
+ <string>Markdown Bold</string>
215
+ <key>scope</key>
216
+ <string>markup.bold</string>
217
+ <key>settings</key>
218
+ <dict>
219
+ <key>foreground</key>
220
+ <string>#FAFAFA</string>
221
+ <key>fontStyle</key>
222
+ <string>bold</string>
223
+ </dict>
224
+ </dict>
225
+ <dict>
226
+ <key>name</key>
227
+ <string>Markdown Italic</string>
228
+ <key>scope</key>
229
+ <string>markup.italic</string>
230
+ <key>settings</key>
231
+ <dict>
232
+ <key>foreground</key>
233
+ <string>#00AC96</string>
234
+ <key>fontStyle</key>
235
+ <string>italic</string>
236
+ </dict>
237
+ </dict>
238
+ <dict>
239
+ <key>name</key>
240
+ <string>Markdown Code</string>
241
+ <key>scope</key>
242
+ <string>markup.inline.raw, markup.raw.block</string>
243
+ <key>settings</key>
244
+ <dict>
245
+ <key>foreground</key>
246
+ <string>#29A948</string>
247
+ </dict>
248
+ </dict>
249
+ <dict>
250
+ <key>name</key>
251
+ <string>Markdown Link</string>
252
+ <key>scope</key>
253
+ <string>markup.underline.link</string>
254
+ <key>settings</key>
255
+ <dict>
256
+ <key>foreground</key>
257
+ <string>#49AEFF</string>
258
+ </dict>
259
+ </dict>
260
+ <dict>
261
+ <key>name</key>
262
+ <string>Invalid</string>
263
+ <key>scope</key>
264
+ <string>invalid, invalid.illegal</string>
265
+ <key>settings</key>
266
+ <dict>
267
+ <key>foreground</key>
268
+ <string>#FF8080</string>
269
+ </dict>
270
+ </dict>
271
+ <dict>
272
+ <key>name</key>
273
+ <string>Diff Added</string>
274
+ <key>scope</key>
275
+ <string>markup.inserted, meta.diff.header.to-file</string>
276
+ <key>settings</key>
277
+ <dict>
278
+ <key>foreground</key>
279
+ <string>#29A948</string>
280
+ </dict>
281
+ </dict>
282
+ <dict>
283
+ <key>name</key>
284
+ <string>Diff Deleted</string>
285
+ <key>scope</key>
286
+ <string>markup.deleted, meta.diff.header.from-file</string>
287
+ <key>settings</key>
288
+ <dict>
289
+ <key>foreground</key>
290
+ <string>#FC0036</string>
291
+ </dict>
292
+ </dict>
293
+ <dict>
294
+ <key>name</key>
295
+ <string>Diff Changed</string>
296
+ <key>scope</key>
297
+ <string>markup.changed</string>
298
+ <key>settings</key>
299
+ <dict>
300
+ <key>foreground</key>
301
+ <string>#FFAE00</string>
302
+ </dict>
303
+ </dict>
304
+ </array>
305
+ <key>uuid</key>
306
+ <string>vercel-theme-uuid-001</string>
307
+ </dict>
308
+ </plist>