zed/docs/src/getting-started.md

41 lines
1.9 KiB
Markdown
Raw Normal View History

2023-12-12 00:17:13 +00:00
# Getting Started
Welcome to Zed! We are excited to have you. Here is a jumping-off point to getting started.
## Download Zed
2023-12-12 00:17:13 +00:00
### MacOS
You can obtain the stable builds via the [download page](https://zed.dev/download). If you want to download our preview build, you can find it on its [releases page](https://zed.dev/releases/preview) After the first manual installation, Zed will periodically check for and install updates automatically for you.
### Linux
For most people, the easiest way to install Zed is through our installation script:
```sh
curl https://zed.dev/install.sh | sh
```
If you'd like to help us test our new features, you can also install our preview build:
```sh
curl https://zed.dev/install.sh | ZED_CHANNEL=preview sh
```
This script supports `x86_64` and `AArch64`, as well as common Linux distributions: Ubuntu, Arch, Debian, RedHat, CentOS, and Fedora.
The install script does not work on systems that:
* have no system-wide glibc (for example on NixOS or Alpine)
* have a glibc older than version 2.29 (for example Amazon Linux 2 or Ubuntu 18 and earlier)
* use an architecture other than 64-bit Intel or 64-bit ARM (for example a 32-bit or RISC-V machine)
If this script is insufficient for your use case or you run into problems running Zed, please see our [linux-specific documentation](./linux.md)
2023-12-12 00:17:13 +00:00
## Configure Zed
2023-12-12 00:17:13 +00:00
Use `⌘` + `,` to open your custom settings to set things like fonts, formatting settings, per-language settings, and more. You can access the default configuration using the `Zed > Settings > Open Default Settings` menu item. See [Configuring Zed](./configuring-zed.md) for all available settings.
2023-12-12 00:17:13 +00:00
## Set up your key bindings
2023-12-12 00:17:13 +00:00
You can access the default key binding set using the `Zed > Settings > Open Default Key Bindings` menu item. Use `⌘` + `K`, `⌘` + `S` to open your custom keymap to add your key bindings. See Key Bindings for more info.