mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 17:58:38 +02:00
plugins/none-ls: fix pkg names
This commit is contained in:
parent
5330427e2b
commit
4e6bb69680
1 changed files with 15 additions and 3 deletions
|
@ -124,7 +124,11 @@ in
|
||||||
];
|
];
|
||||||
blackd = "black";
|
blackd = "black";
|
||||||
buildifier = "bazel-buildtools";
|
buildifier = "bazel-buildtools";
|
||||||
cfn_lint = "python3.pkgs.cfn-lint";
|
cfn_lint = [
|
||||||
|
"python3"
|
||||||
|
"pkgs"
|
||||||
|
"cfn-lint"
|
||||||
|
];
|
||||||
clang_format = "clang-tools";
|
clang_format = "clang-tools";
|
||||||
clj_kondo = "clj-kondo";
|
clj_kondo = "clj-kondo";
|
||||||
cmake_format = "cmake-format";
|
cmake_format = "cmake-format";
|
||||||
|
@ -188,7 +192,12 @@ in
|
||||||
"php-codesniffer"
|
"php-codesniffer"
|
||||||
];
|
];
|
||||||
# FIXME: Can't have transition fallbacks anymore
|
# FIXME: Can't have transition fallbacks anymore
|
||||||
prisma_format = "prisma";
|
# TODO: replace after flake.lock update
|
||||||
|
# prisma_format = "prisma";
|
||||||
|
prisma_format = [
|
||||||
|
"nodePackages"
|
||||||
|
"prisma"
|
||||||
|
];
|
||||||
ptop = "fpc";
|
ptop = "fpc";
|
||||||
puppet_lint = "puppet-lint";
|
puppet_lint = "puppet-lint";
|
||||||
qmlformat = [
|
qmlformat = [
|
||||||
|
@ -211,7 +220,10 @@ in
|
||||||
staticcheck = "go-tools";
|
staticcheck = "go-tools";
|
||||||
surface = "elixir";
|
surface = "elixir";
|
||||||
swift_format = "swift-format";
|
swift_format = "swift-format";
|
||||||
teal = "luaPackages.tl";
|
teal = [
|
||||||
|
"luaPackages"
|
||||||
|
"tl"
|
||||||
|
];
|
||||||
terraform_fmt = "terraform";
|
terraform_fmt = "terraform";
|
||||||
terraform_validate = "terraform";
|
terraform_validate = "terraform";
|
||||||
terragrunt_fmt = "terragrunt";
|
terragrunt_fmt = "terragrunt";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue