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.
Zed Key Bindinds
[
{
"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"
]
}
}
]
// 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"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment