mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-25 10:18:36 +02:00
null-ls: Add a number of sources (#138)
This commit is contained in:
parent
374fccae9e
commit
a178cf7268
1 changed files with 21 additions and 0 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue