-
-
Notifications
You must be signed in to change notification settings - Fork 0
Added new configurations #13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| ## Progress reporting | ||
| - Start multi-step tasks with a concise numbered plan. | ||
| - Report progress as `[n/N] <action>`. No whimsical or filler text. | ||
| - Print exact commands before running them; report result briefly (succeeded/failed/running). | ||
| - If blocked: `[blocked] <reason>`. | ||
|
|
||
| ## External document safety | ||
| - Read and verify target content before any modification. | ||
| - Never delete, overwrite, or clear without explicit permission. | ||
| - Prefer additive changes. If replacing, state exactly what changes and get approval. | ||
| - On failure: report what happened, what was affected, and how to recover. | ||
|
|
||
| ## Communication style | ||
| - Professional, concise, active voice, short sentences. Write like a human, not an AI. | ||
| - Applies to all communication media: Slack, email, comments, PRs, etc. | ||
| - No exclamation points in external messages. | ||
| - No AI watermarks, footnotes, or attribution lines in messages sent on behalf of the user. | ||
| - No filler phrases, hedging (unless uncertainty is genuine), em-dashes, or bullet-heavy formatting. | ||
|
|
||
| ## Git workflow | ||
| - NEVER push to remote or force-push without explicit permission. | ||
| - Commit messages describe _why_, not just _what_. Prefer focused commits. | ||
|
|
||
| ## Code and SQL | ||
| - Python: verify imports resolve and syntax is valid. Match existing project structure. | ||
| - CLI tools: test the command invocation, not just the underlying function. | ||
| - SQL: small focused queries, no `SELECT *` on large tables, use `LIMIT`, filter early. Validate each step before adding complexity. | ||
|
|
||
| ## Sub-agents and parallelization | ||
| - IMPORTANT: Pass model `opus` for slides, documents, complex reasoning, or planning. Use Sonnet for simple lookups and searches. | ||
| - Maximize parallelization: launch independent sub-agents concurrently. | ||
| - Delegate research and independent subtasks to sub-agents to keep main context clean. | ||
|
|
||
| ## Tools | ||
| - Prefer skills and MCP tools over raw shell commands. When a skill exists, use it. | ||
|
|
||
| ## Verification | ||
| - IMPORTANT: Never present work as complete until verified. | ||
| - Adversarial self-review before presenting deliverables. | ||
| - Code: confirm it parses, imports resolve, logic is sound. Run when possible. | ||
| - SQL: run a small test query to confirm execution and expected shape. | ||
| - External edits: read back to confirm the change landed. | ||
| - If verification is impossible, state what was NOT verified and why. | ||
|
|
||
| ## Auth and error recovery | ||
| - On MCP auth errors (401/403/token expired): retry up to 3 times silently before asking user. | ||
| - On retry failure: report exact error and suggest a specific fix. | ||
|
|
||
| ## Context management | ||
| - On compaction, always preserve: modified files list, pending tasks, test/build commands. | ||
| - Scope investigations narrowly. Use sub-agents for broad exploration. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| # Theme | ||
| theme = Monokai_Pro | ||
|
|
||
| # Font | ||
| font-family = JetBrainsMono Nerd Font Mono | ||
| font-size = 14 | ||
| font-thicken = true | ||
| adjust-cell-height = 2 | ||
|
|
||
| # Window | ||
| window-padding-x = 8 | ||
| window-padding-y = 8 | ||
| background-opacity = 0.95 | ||
| unfocused-split-opacity = 0.9 | ||
|
|
||
| # Behavior | ||
| copy-on-select = clipboard | ||
| mouse-hide-while-typing = true | ||
| confirm-close-surface = false | ||
| shell-integration-features = no-cursor | ||
|
|
||
| # macOS | ||
| macos-option-as-alt = true | ||
| macos-titlebar-style = tabs | ||
| window-save-state = always | ||
|
|
||
| # Clipboard | ||
| clipboard-paste-protection = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| # Monokai Pro | ||
| # Converted from iTerm2 color scheme | ||
|
|
||
| background = #2d2a2e | ||
| foreground = #fcfcfa | ||
|
|
||
| cursor-color = #c1c0c0 | ||
| cursor-text = #c1c0c0 | ||
|
|
||
| selection-background = #5b595c | ||
| selection-foreground = #fcfcfa | ||
|
|
||
| # Normal colors (0-7) | ||
| palette = 0=#2d2a2e | ||
| palette = 1=#ff6188 | ||
| palette = 2=#a9dc76 | ||
| palette = 3=#ffd866 | ||
| palette = 4=#fc9867 | ||
| palette = 5=#ab9df2 | ||
| palette = 6=#78dce8 | ||
| palette = 7=#fcfcfa | ||
|
|
||
| # Bright colors (8-15) | ||
| palette = 8=#727072 | ||
| palette = 9=#ff6188 | ||
| palette = 10=#a9dc76 | ||
| palette = 11=#ffd866 | ||
| palette = 12=#fc9867 | ||
| palette = 13=#ab9df2 | ||
| palette = 14=#78dce8 | ||
| palette = 15=#fcfcfa |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| # ============================================================================= | ||
| # Gemini CLI Configuration | ||
| # ============================================================================= | ||
| # Settings for Google Gemini CLI. | ||
| # | ||
| # Installation: brew install gemini-cli | ||
| # ============================================================================= | ||
|
|
||
| # Disable telemetry | ||
| export GEMINI_TELEMETRY_ENABLED=false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| # ============================================================================= | ||
| # Mole Configuration | ||
| # ============================================================================= | ||
| # Configures Mole environment and preferences. | ||
| # ============================================================================= | ||
|
|
||
| # Mole shell completion | ||
| if [[ -o interactive ]]; then | ||
| if (( ! $+functions[compdef] )); then | ||
| autoload -Uz compinit | ||
| compinit | ||
| fi | ||
|
|
||
| if output="$(mole completion zsh 2>/dev/null)"; then | ||
| eval "$output" | ||
| fi | ||
|
aessing marked this conversation as resolved.
Outdated
|
||
| fi | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| # ============================================================================= | ||
| # Obsidian CLI Configuration | ||
| # ============================================================================= | ||
| # Adds the Obsidian CLI to PATH if the application is installed. | ||
| # ============================================================================= | ||
|
|
||
| if [[ -d "/Applications/Obsidian.app/Contents/MacOS" ]]; then | ||
| export PATH="$PATH:/Applications/Obsidian.app/Contents/MacOS" | ||
| fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| # ============================================================================= | ||
| # Terraform Configuration | ||
| # ============================================================================= | ||
| # Settings for HashiCorp Terraform CLI. | ||
| # | ||
| # Installation: brew install hashicorp/tap/terraform | ||
| # ============================================================================= | ||
|
|
||
| # Disable HashiCorp Checkpoint (version checks and usage reporting) | ||
| export CHECKPOINT_DISABLE=1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+240 KB
Fonts/CascadiaCode-2407.24/otf/static/CascadiaCode-ExtraLightItalic.otf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+246 KB
Fonts/CascadiaCode-2407.24/otf/static/CascadiaCode-SemiLightItalic.otf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.04 MB
Fonts/CascadiaCode-2407.24/otf/static/CascadiaCodeNF-ExtraLightItalic.otf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.05 MB
Fonts/CascadiaCode-2407.24/otf/static/CascadiaCodeNF-SemiBoldItalic.otf
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.05 MB
Fonts/CascadiaCode-2407.24/otf/static/CascadiaCodeNF-SemiLightItalic.otf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+263 KB
Fonts/CascadiaCode-2407.24/otf/static/CascadiaCodePL-ExtraLightItalic.otf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+272 KB
Fonts/CascadiaCode-2407.24/otf/static/CascadiaCodePL-SemiBoldItalic.otf
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+269 KB
Fonts/CascadiaCode-2407.24/otf/static/CascadiaCodePL-SemiLightItalic.otf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+224 KB
Fonts/CascadiaCode-2407.24/otf/static/CascadiaMono-ExtraLightItalic.otf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+230 KB
Fonts/CascadiaCode-2407.24/otf/static/CascadiaMono-SemiLightItalic.otf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.03 MB
Fonts/CascadiaCode-2407.24/otf/static/CascadiaMonoNF-ExtraLightItalic.otf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.03 MB
Fonts/CascadiaCode-2407.24/otf/static/CascadiaMonoNF-SemiBoldItalic.otf
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.03 MB
Fonts/CascadiaCode-2407.24/otf/static/CascadiaMonoNF-SemiLightItalic.otf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+246 KB
Fonts/CascadiaCode-2407.24/otf/static/CascadiaMonoPL-ExtraLightItalic.otf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+256 KB
Fonts/CascadiaCode-2407.24/otf/static/CascadiaMonoPL-SemiBoldItalic.otf
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+253 KB
Fonts/CascadiaCode-2407.24/otf/static/CascadiaMonoPL-SemiLightItalic.otf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+439 KB
Fonts/CascadiaCode-2407.24/ttf/static/CascadiaCode-ExtraLightItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+444 KB
Fonts/CascadiaCode-2407.24/ttf/static/CascadiaCode-SemiLightItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.04 MB
Fonts/CascadiaCode-2407.24/ttf/static/CascadiaCodeNF-ExtraLightItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.05 MB
Fonts/CascadiaCode-2407.24/ttf/static/CascadiaCodeNF-SemiBoldItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.05 MB
Fonts/CascadiaCode-2407.24/ttf/static/CascadiaCodeNF-SemiLightItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+514 KB
Fonts/CascadiaCode-2407.24/ttf/static/CascadiaCodePL-ExtraLightItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+531 KB
Fonts/CascadiaCode-2407.24/ttf/static/CascadiaCodePL-SemiBoldItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+527 KB
Fonts/CascadiaCode-2407.24/ttf/static/CascadiaCodePL-SemiLightItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+423 KB
Fonts/CascadiaCode-2407.24/ttf/static/CascadiaMono-ExtraLightItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+425 KB
Fonts/CascadiaCode-2407.24/ttf/static/CascadiaMono-SemiLightItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.02 MB
Fonts/CascadiaCode-2407.24/ttf/static/CascadiaMonoNF-ExtraLightItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.04 MB
Fonts/CascadiaCode-2407.24/ttf/static/CascadiaMonoNF-SemiBoldItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.03 MB
Fonts/CascadiaCode-2407.24/ttf/static/CascadiaMonoNF-SemiLightItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+497 KB
Fonts/CascadiaCode-2407.24/ttf/static/CascadiaMonoPL-ExtraLightItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+513 KB
Fonts/CascadiaCode-2407.24/ttf/static/CascadiaMonoPL-SemiBoldItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+508 KB
Fonts/CascadiaCode-2407.24/ttf/static/CascadiaMonoPL-SemiLightItalic.ttf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+107 KB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaCode-ExtraLightItalic.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+110 KB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaCode-LightItalic.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+110 KB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaCode-SemiBoldItalic.woff2
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+110 KB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaCode-SemiLightItalic.woff2
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.16 MB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaCodeNF-BoldItalic.woff2
Binary file not shown.
Binary file added
BIN
+1.19 MB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaCodeNF-ExtraLight.woff2
Binary file not shown.
Binary file added
BIN
+1.16 MB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaCodeNF-ExtraLightItalic.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.16 MB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaCodeNF-LightItalic.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.16 MB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaCodeNF-SemiBoldItalic.woff2
Binary file not shown.
Binary file added
BIN
+1.2 MB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaCodeNF-SemiLight.woff2
Binary file not shown.
Binary file added
BIN
+1.16 MB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaCodeNF-SemiLightItalic.woff2
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+133 KB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaCodePL-BoldItalic.woff2
Binary file not shown.
Binary file added
BIN
+168 KB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaCodePL-ExtraLight.woff2
Binary file not shown.
Binary file added
BIN
+128 KB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaCodePL-ExtraLightItalic.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+131 KB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaCodePL-LightItalic.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+133 KB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaCodePL-SemiBoldItalic.woff2
Binary file not shown.
Binary file added
BIN
+172 KB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaCodePL-SemiLight.woff2
Binary file not shown.
Binary file added
BIN
+132 KB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaCodePL-SemiLightItalic.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+101 KB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaMono-ExtraLightItalic.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+103 KB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaMono-LightItalic.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+104 KB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaMono-SemiBoldItalic.woff2
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+103 KB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaMono-SemiLightItalic.woff2
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.15 MB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaMonoNF-BoldItalic.woff2
Binary file not shown.
Binary file added
BIN
+1.18 MB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaMonoNF-ExtraLight.woff2
Binary file not shown.
Binary file added
BIN
+1.15 MB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaMonoNF-ExtraLightItalic.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.15 MB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaMonoNF-LightItalic.woff2
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.19 MB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaMonoNF-SemiBold.woff2
Binary file not shown.
Binary file added
BIN
+1.15 MB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaMonoNF-SemiBoldItalic.woff2
Binary file not shown.
Binary file added
BIN
+1.19 MB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaMonoNF-SemiLight.woff2
Binary file not shown.
Binary file added
BIN
+1.15 MB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaMonoNF-SemiLightItalic.woff2
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+126 KB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaMonoPL-BoldItalic.woff2
Binary file not shown.
Binary file added
BIN
+160 KB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaMonoPL-ExtraLight.woff2
Binary file not shown.
Binary file added
BIN
+121 KB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaMonoPL-ExtraLightItalic.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+125 KB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaMonoPL-LightItalic.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+127 KB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaMonoPL-SemiBoldItalic.woff2
Binary file not shown.
Binary file added
BIN
+164 KB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaMonoPL-SemiLight.woff2
Binary file not shown.
Binary file added
BIN
+125 KB
Fonts/CascadiaCode-2407.24/woff2/static/CascadiaMonoPL-SemiLightItalic.woff2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| # This is the official list of project authors for copyright purposes. | ||
| # This file is distinct from the CONTRIBUTORS.txt file. | ||
| # See the latter for an explanation. | ||
| # | ||
| # Names should be added to this file as: | ||
| # Name or Organization <email address> | ||
|
|
||
| JetBrains <> | ||
| Philipp Nurullin <philipp.nurullin@jetbrains.com> | ||
| Konstantin Bulenkov <kb@jetbrains.com> |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.