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
| #:schema https://docs.jj-vcs.dev/latest/config-schema.json | |
| [user] | |
| name = "Jonathan Spira" | |
| email = "[email protected]" | |
| [signing] | |
| behavior = "drop" | |
| backend = "gpg" |
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
| function fish_prompt | |
| set_color blue --bold | |
| echo -n (prompt_pwd) | |
| # 2. Check for Jujutsu first | |
| if jj root >/dev/null 2>&1 | |
| set -l jj_shortest (jj log -r @ -T "change_id.shortest()" --no-graph 2>/dev/null) | |
| if test -n "$jj_shortest" | |
| set -l jj_full (jj log -r @ -T "change_id.short(8)" --no-graph 2>/dev/null) |
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
| /* Copyright 2023 @ Keychron (https://www.keychron.com) | |
| * | |
| * This program is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU General Public License as published by | |
| * the Free Software Foundation, either version 2 of the License, or | |
| * (at your option) any later version. | |
| * | |
| * This program is distributed in the hope that it will be useful, | |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
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
| [ | |
| { | |
| "context": "Editor", | |
| "bindings": { | |
| // movement | |
| "alt-left": "editor::MoveToPreviousWordStart", | |
| "alt-right": "editor::MoveToNextWordEnd", | |
| "secondary-left": [ | |
| "editor::MoveToBeginningOfLine", | |
| { "stop_at_soft_wraps": false, "stop_at_indent": true } |
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
| { | |
| "title_bar": { | |
| "show_menus": false, | |
| "show_branch_icon": true | |
| }, | |
| "telemetry": { | |
| "diagnostics": true, | |
| "metrics": false | |
| }, | |
| "use_system_prompts": 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
| -----BEGIN PGP PUBLIC KEY BLOCK----- | |
| mQINBGe2DHgBEAC50L86Uj3DHMbf9uCIf3F+qYQ9JDAw+tYWoQQloHwBSK0jPBBE | |
| G7QrK6fp0SeCjUAS4B9z8azOFw7WA6j5ZFgGZ19gr6QRnKDw+99KeKUqnn4aPyJE | |
| wfL9is7HIqCX3qCSV5ywEnXSyeojsT6nWVpG2gvqDF/Bj6VMfWpA8wiZ+KLauPjg | |
| KDJqte94ZTyJ1y/Lz6vzYqtGRDr3hWeDW5aIEcGeqXQAlljne+wiP4LM7+aA4ms3 | |
| Bi8ozl/OLxgAgjTKl/rMwno8P9eFQfaWIXqC5SC0IJ9TQN/cfMRPxnKPogkROdQZ | |
| ElbjipRvOQMQMt4uLTw52F90x9j2A5eP2IfFAWB6zau4jr7xNeJ+kSDaTWlELA16 | |
| O+txFicU9RFPajgF2l97iwkHWaMcZZO41EJtt9QWnf+7Y2aoTZIf7qrO2oHKGdYP | |
| d5AaLN3hZpekAwSdyZ+zoIb78uGPvoqcA2fJWFiwJfCgA2GhQhg95v2aGvtiePpe |
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
| [ | |
| // Standard macOS bindings | |
| { | |
| "bindings": { | |
| "cmd-u": "editor::FoldAll", | |
| "up": "menu::SelectPrevious", | |
| "pageup": "menu::SelectFirst", | |
| "shift-pageup": "menu::SelectFirst", | |
| "ctrl-p": "menu::SelectPrevious", | |
| "down": "menu::SelectNext", |
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
| { | |
| "features": { | |
| "copilot": false, | |
| "edit_prediction_provider": "none" | |
| }, | |
| "auto_signature_help": true, | |
| "show_signature_help_after_edits": true, | |
| "base_keymap": "VSCode", | |
| "theme": "Fleet Dark Purple", | |
| "ui_font_size": 20, |
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
| [ | |
| // Standard macOS bindings | |
| { | |
| "bindings": { | |
| "up": "menu::SelectPrev", | |
| "pageup": "menu::SelectFirst", | |
| "shift-pageup": "menu::SelectFirst", | |
| "ctrl-p": "menu::SelectPrev", | |
| "down": "menu::SelectNext", | |
| "pagedown": "menu::SelectLast", |
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 settings | |
| // | |
| // For information on how to configure Zed, see the Zed | |
| // documentation: https://zed.dev/docs/configuring-zed | |
| // | |
| // To see all of Zed's default settings without changing your | |
| // custom settings, run the open default settings command | |
| // from the command palette or from Zed application menu. | |
| { | |
| "base_keymap": "VSCode", |
NewerOlder