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}); ''; };