null-ls: Add a number of sources (#138)

This commit is contained in:
traxys 2023-01-23 14:58:50 +01:00 committed by GitHub
parent 374fccae9e
commit a178cf7268
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,6 +4,9 @@ let
serverData = { serverData = {
code_actions = { code_actions = {
gitsigns = { }; gitsigns = { };
shellcheck = {
package = pkgs.shellcheck;
};
}; };
completion = { }; completion = { };
diagnostics = { diagnostics = {
@ -13,6 +16,12 @@ let
shellcheck = { shellcheck = {
package = pkgs.shellcheck; package = pkgs.shellcheck;
}; };
cppcheck = {
package = pkgs.cppcheck;
};
gitlint = {
package = pkgs.gitlint;
};
}; };
formatting = { formatting = {
phpcbf = { phpcbf = {
@ -36,6 +45,18 @@ let
fnlfmt = { fnlfmt = {
package = pkgs.fnlfmt; package = pkgs.fnlfmt;
}; };
stylua = {
package = pkgs.stylua;
};
cbfmt = {
package = pkgs.cbfmt;
};
shfmt = {
package = pkgs.shfmt;
};
taplo = {
package = pkgs.taplo;
};
}; };
}; };
# Format the servers to be an array of attrs like the following example # Format the servers to be an array of attrs like the following example