Commit 65542e2
Changed files (3)
pkgs
helix-plugins
pkgs/helix-plugins/default.nix
@@ -15,6 +15,8 @@ lib.makeScope newScope (
helix-file-watcher = callPackage ./helix-file-watcher.nix {};
+ oil = callPackage ./oil.nix {};
+
scooter = callPackage ./scooter.nix {};
scooter-hx = selfLib.renamePackage "helixPlugins.scooter-hx" "helixPlugins.scooter" self.scooter;
pkgs/helix-plugins/oil.nix
@@ -0,0 +1,23 @@
+{
+ lib,
+ buildHelixPlugin,
+ fetchFromGitHub,
+ ...
+}:
+buildHelixPlugin {
+ pname = "oil.hx";
+ version = "unstable-2026-06-21";
+
+ src = fetchFromGitHub {
+ owner = "Ra77a3l3-jar";
+ repo = "oil.hx";
+ rev = "678a24cca321c84252f8a0812cbb6018f56ab72d";
+ hash = "sha256-xZwDENGeLTH0WMa7/g8BxmW3xibGrCMpBRnwkfDm5QI=";
+ };
+
+ meta = {
+ description = "File Manager in a buffer for Helix editor";
+ homepage = "https://github.com/Ra77a3l3-jar/oil.hx";
+ license = lib.licenses.mit;
+ };
+}
README.md
@@ -31,6 +31,7 @@
| `helixPlugins.fcitx-focus` | [helix-fcitx-focus](https://github.com/mtul0729/helix-fcitx-focus) | `unstable-2026-05-06` | [MIT](https://spdx.org/licenses/MIT.html) | Steel native module for Helix fcitx5 focus and mode switching |
| `helixPlugins.file-tree` | [file-tree.hx](https://github.com/mattwparas/file-tree.hx) | `unstable-2026-05-01` | Not specified | File tree for helix, using Steel. |
| `helixPlugins.helix-file-watcher` | [helix-file-watcher](https://github.com/mattwparas/helix-file-watcher) | `unstable-2026-05-21` | Not specified | Helix file watcher plugin |
+| `helixPlugins.oil` | [oil.hx](https://github.com/Ra77a3l3-jar/oil.hx) | `unstable-2026-06-21` | [MIT](https://spdx.org/licenses/MIT.html) | File Manager in a buffer for Helix editor |
| `helixPlugins.scooter` | [scooter.hx](https://github.com/thomasschafer/scooter.hx) | `unstable-2026-03-15` | [MIT](https://spdx.org/licenses/MIT.html) | Interactive find-and-replace Helix plugin |
| `helixPlugins.wakatime` | [wakatime.hx](https://github.com/Xerxes-2/wakatime.hx) | `unstable-2026-05-01` | [MIT](https://spdx.org/licenses/MIT.html) | Wakatime plugin for Helix Steel |