ZIm/docs/src/languages/bash.md
Marshall Bowers 3b3c379852
docs: Fix casing of "Tree-sitter" (#25427)
This PR fixes the casing of "Tree-sitter" in the docs.

It is "Tree-sitter", not "Tree Sitter" or "Tree-Sitter".

Release Notes:

- N/A
2025-02-23 15:30:10 +00:00

1.4 KiB

Bash

Bash language support in Zed is provided by the community-maintained Basher extension. Report issues to: https://github.com/d1y/bash.zed/issues

Configuration

When shellcheck is available bash-language-server will use it internally to provide diagnostics.

Install shellcheck:

brew install shellcheck             # macOS (HomeBrew)
apt-get install shellcheck          # Ubuntu/Debian
pacman -S shellcheck                # ArchLinux
dnf install shellcheck              # Fedora
yum install shellcheck              # CentOS/RHEL
zypper install shellcheck           # openSUSE
choco install shellcheck            # Windows (Chocolatey)

And verify it is available from your path:

which shellcheck
shellcheck --version

If you wish to customize the warnings/errors reported you just need to create a .shellcheckrc file. You can do this in the root of your project or in your home directory (~/.shellcheckrc). See: shellcheck documentation for more.

See also: