Skip to content

Commit 590b9b1

Browse files
committed
flake/dev: remove redundant python interpreator
Don't need to execute with the additional parameter, it gets picked up by the nix-shell
1 parent 9cc9962 commit 590b9b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

flake/dev/devshell.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,17 +107,17 @@
107107
}
108108
{
109109
name = "locate-lsp-packages";
110-
command = ''${pkgs.python3.interpreter} ${./locate-lsp-packages.py}'';
110+
command = ''${./locate-lsp-packages.py}'';
111111
help = "Locate (with nix-index) LSP servers in nixpkgs";
112112
}
113113
{
114114
name = "new-plugin";
115-
command = ''${pkgs.python3.interpreter} ${./new-plugin.py} "$@"'';
115+
command = ''${./new-plugin.py} "$@"'';
116116
help = "Create a new plugin";
117117
}
118118
{
119119
name = "diff-plugins";
120-
command = ''${pkgs.python3.interpreter} ${./diff-plugins.py} "$@"'';
120+
command = ''${./diff-plugins.py} "$@"'';
121121
help = "Compare available plugins with another nixvim commit";
122122
}
123123
];

0 commit comments

Comments
 (0)