mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-22 20:32:59 +09:00
17 lines
259 B
Nix
Executable file
17 lines
259 B
Nix
Executable file
{
|
|
# bash
|
|
enable = true;
|
|
extraDiagnostics = {
|
|
enable = true;
|
|
types = [ "shellcheck" ];
|
|
};
|
|
format = {
|
|
enable = true;
|
|
type = [ "shfmt" ];
|
|
};
|
|
lsp = {
|
|
enable = true;
|
|
servers = [ "bash-ls" ];
|
|
};
|
|
treesitter.enable = true;
|
|
}
|