From 3ae4b3158acb66adade0b699a3afdb86c9e46929 Mon Sep 17 00:00:00 2001
From: Christoph Koehler <christoph@zerodeviation.net>
Date: Wed, 2 Apr 2025 08:54:00 -0600
Subject: [PATCH] fix: don't reference snacks in oil config

---
 docs/release-notes/rl-0.8.md                | 4 ++++
 modules/plugins/utility/oil-nvim/config.nix | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/docs/release-notes/rl-0.8.md b/docs/release-notes/rl-0.8.md
index 9adcddee..a3387fd6 100644
--- a/docs/release-notes/rl-0.8.md
+++ b/docs/release-notes/rl-0.8.md
@@ -300,3 +300,7 @@
   `setupOpts.pickers.find_files`
 - Update default `telescope.setupOpts.pickers.find_files.find_command` to only
   include files (and therefore exclude directories from results)
+
+  [ckoehler](https://github.com/ckoehler):
+
+  - Fix oil config referencing snacks
diff --git a/modules/plugins/utility/oil-nvim/config.nix b/modules/plugins/utility/oil-nvim/config.nix
index 46f49112..dca4de60 100644
--- a/modules/plugins/utility/oil-nvim/config.nix
+++ b/modules/plugins/utility/oil-nvim/config.nix
@@ -12,7 +12,7 @@ in {
   config = mkIf cfg.enable {
     vim = {
       startPlugins = ["oil-nvim"];
-      pluginRC.snacks-nvim = entryAnywhere ''
+      pluginRC.oil-nvim = entryAnywhere ''
         require("oil").setup(${toLuaObject cfg.setupOpts});
       '';
     };