mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-22 10:18:47 +02:00
flake/dev: remove redundant python interpreator
Don't need to execute with the additional parameter, it gets picked up by the nix-shell
This commit is contained in:
parent
9cc99629f3
commit
590b9b13f7
1 changed files with 3 additions and 3 deletions
|
@ -107,17 +107,17 @@
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
name = "locate-lsp-packages";
|
name = "locate-lsp-packages";
|
||||||
command = ''${pkgs.python3.interpreter} ${./locate-lsp-packages.py}'';
|
command = ''${./locate-lsp-packages.py}'';
|
||||||
help = "Locate (with nix-index) LSP servers in nixpkgs";
|
help = "Locate (with nix-index) LSP servers in nixpkgs";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
name = "new-plugin";
|
name = "new-plugin";
|
||||||
command = ''${pkgs.python3.interpreter} ${./new-plugin.py} "$@"'';
|
command = ''${./new-plugin.py} "$@"'';
|
||||||
help = "Create a new plugin";
|
help = "Create a new plugin";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
name = "diff-plugins";
|
name = "diff-plugins";
|
||||||
command = ''${pkgs.python3.interpreter} ${./diff-plugins.py} "$@"'';
|
command = ''${./diff-plugins.py} "$@"'';
|
||||||
help = "Compare available plugins with another nixvim commit";
|
help = "Compare available plugins with another nixvim commit";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue