mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 17:58:38 +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 = {
|
||||
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue