mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-30 04:14:28 +02:00
null-ls: add beautysh and shellcheck
This commit is contained in:
parent
4f08c8a4bf
commit
4c36cdc2e7
4 changed files with 156 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, config, lib, ... }@args:
|
||||
{ pkgs, config, lib, inputs, ... }@args:
|
||||
let
|
||||
helpers = import ./helpers.nix args;
|
||||
serverData = {
|
||||
|
@ -8,6 +8,9 @@ let
|
|||
flake8 = {
|
||||
packages = [ pkgs.python3Packages.flake8 ];
|
||||
};
|
||||
shellcheck = {
|
||||
packages = [ pkgs.shellcheck ];
|
||||
};
|
||||
};
|
||||
formatting = {
|
||||
phpcbf = {
|
||||
|
@ -25,6 +28,9 @@ let
|
|||
black = {
|
||||
packages = [ pkgs.python3Packages.black ];
|
||||
};
|
||||
beautysh = {
|
||||
packages = [ inputs.beautysh.packages.${pkgs.system}.beautysh-python38 ];
|
||||
};
|
||||
};
|
||||
};
|
||||
# Format the servers to be an array of attrs like the following example
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue