mirror of
https://github.com/nix-community/nixvim.git
synced 2026-08-30 02:34:21 -05:00
null-ls: Add a number of sources (#138)
This commit is contained in:
@@ -4,6 +4,9 @@ let
|
||||
serverData = {
|
||||
code_actions = {
|
||||
gitsigns = { };
|
||||
shellcheck = {
|
||||
package = pkgs.shellcheck;
|
||||
};
|
||||
};
|
||||
completion = { };
|
||||
diagnostics = {
|
||||
@@ -13,6 +16,12 @@ let
|
||||
shellcheck = {
|
||||
package = pkgs.shellcheck;
|
||||
};
|
||||
cppcheck = {
|
||||
package = pkgs.cppcheck;
|
||||
};
|
||||
gitlint = {
|
||||
package = pkgs.gitlint;
|
||||
};
|
||||
};
|
||||
formatting = {
|
||||
phpcbf = {
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user