Skip to content

Commit

Permalink
null-ls: Add a number of sources (nix-community#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
traxys authored Jan 23, 2023
1 parent 374fcca commit a178cf7
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions plugins/null-ls/servers.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ let
serverData = {
code_actions = {
gitsigns = { };
shellcheck = {
package = pkgs.shellcheck;
};
};
completion = { };
diagnostics = {
Expand All @@ -13,6 +16,12 @@ let
shellcheck = {
package = pkgs.shellcheck;
};
cppcheck = {
package = pkgs.cppcheck;
};
gitlint = {
package = pkgs.gitlint;
};
};
formatting = {
phpcbf = {
Expand All @@ -36,6 +45,18 @@ let
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
Expand Down

0 comments on commit a178cf7

Please sign in to comment.