You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To open a shell where `vscode_runner` is installed:
18
19
```bash
19
20
nix-shell --packages vscode-runner
20
21
```
21
22
23
+
To permanently install, add this package to your system configuration:
24
+
```nix
25
+
environment.systemPackages = with pkgs; [
26
+
# …
27
+
vscode-runner
28
+
];
29
+
```
30
+
Note that you need to restart KRunner to see results from this runner: `pkill krunner`. It will start automatically the next time you use its shortcut.
0 commit comments