Skip to content

Instantly share code, notes, and snippets.

@Fausto95
Created July 17, 2023 08:14
Show Gist options
  • Select an option

  • Save Fausto95/94d3f8cb22fa432bf9aaf96d22e8f041 to your computer and use it in GitHub Desktop.

Select an option

Save Fausto95/94d3f8cb22fa432bf9aaf96d22e8f041 to your computer and use it in GitHub Desktop.

Revisions

  1. Fausto95 created this gist Jul 17, 2023.
    19 changes: 19 additions & 0 deletions .zed-keybindings.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,19 @@
    [
    {
    "context": "Editor",
    "bindings": {
    "ctrl-cmd-up": "editor::SelectLargerSyntaxNode",
    "ctrl-cmd-down": "editor::SelectSmallerSyntaxNode",
    "alt-up": "editor::MoveLineUp",
    "alt-down": "editor::MoveLineDown",
    "alt-shift-up": [
    "editor::DuplicateLine",
    "MoveLineUp"
    ],
    "alt-shift-down": [
    "editor::DuplicateLine",
    "MoveLineDown"
    ]
    }
    }
    ]
    19 changes: 19 additions & 0 deletions .zed-settings.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,19 @@
    // 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.
    {
    "project_panel": {
    "dock": "right"
    },
    "theme": "Andromeda",
    "experimental_themes": true,
    "buffer_font_family": "PragmataProLiga Nerd Font",
    "buffer_font_size": 16,
    "format_on_save": "on"
    }