1name = "Shell Script"
2code_fence_block_name = "bash"
3grammar = "bash"
4path_suffixes = ["sh", "bash", "bashrc", "bash_profile", "bash_aliases", "bash_logout", "profile", "zsh", "zshrc", "zshenv", "zsh_profile", "zsh_aliases", "zsh_histfile", "zlogin", "zprofile", ".env", "PKGBUILD"]
5line_comments = ["# "]
6first_line_pattern = '^#!.*\b(?:ash|bash|dash|sh|zsh)\b'
7brackets = [
8 { start = "[", end = "]", close = true, newline = false },
9 { start = "(", end = ")", close = true, newline = false },
10 { start = "{", end = "}", close = true, newline = false },
11 { start = "\"", end = "\"", close = true, newline = false, not_in = ["comment", "string"] },
12 { start = "'", end = "'", close = true, newline = false, not_in = ["string", "comment"] },
13]