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
#!/usr/bin/env bun | |
import fs from "fs"; | |
import { parse } from "jsonc-parser"; | |
// Usage | |
// bun convert.ts <file>.jsonc <themne-name>.conf | |
// You get your jsonc file from Developer: Generate Color Theme from Current Settings on Vscode command pallete | |
if (process.argv.length < 3) { | |
console.error("Usage: convert.ts <vscode-theme.jsonc> [output.ghostty]"); |
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
// Zed keymap | |
// | |
// For information on binding keys, see the Zed | |
// documentation: https://zed.dev/docs/key-bindings | |
// | |
// To see the default key bindings run `zed: open default keymap` | |
// from the command palette. | |
[ | |
{ | |
"context": "Workspace", |
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
{ | |
"language_models": { | |
"copilot_chat": { | |
"api_url": "https://api.githubcopilot.com/chat/completions", | |
"auth_url": "https://api.github.com/copilot_internal/v2/token", | |
"models_url": "https://api.githubcopilot.com/models" | |
} | |
}, | |
"agent": { | |
"default_model": { |