This commit is contained in:
Dysthesis 2024-08-08 02:22:09 +03:00 committed by GitHub
commit 9d6be56706
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -25,3 +25,17 @@ Config(
engines: [Google]
)
```
## Notes
This plugin relies on xdg-open and won't work without it. On NixOS, this can be installed by adding `xdg-utils` to your list of packages:
```nix
environment.systemPackages = with pkgs; [
xdg-utils
];
```
Or, with home-manager:
```nix
home.packages = with pkgs; [
xdg-utils
];
```