bash.md

 1# Bash
 2
 3Bash language support in Zed is provided by the community-maintained [Basher extension](https://github.com/d1y/bash.zed).
 4Report issues to: [https://github.com/d1y/bash.zed/issues](https://github.com/d1y/bash.zed/issues)
 5
 6- Tree Sitter: [tree-sitter/tree-sitter-bash](https://github.com/tree-sitter/tree-sitter-bash)
 7- Language Server: [bash-lsp/bash-language-server](https://github.com/bash-lsp/bash-language-server)
 8
 9## Configuration
10
11The bash-language-server support shellcheck. But you need to install it manually:
12
13```sh
14# macOS
15brew install shellcheck
16
17# Ubuntu/Debian
18sudo apt-get install shellcheck
19
20# Arch Linux
21pacman -S shellcheck
22```
23
24If 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](https://github.com/koalaman/shellcheck/wiki/Ignore#ignoring-one-or-more-types-of-errors-forever) for more.