Merge pull request from ckoehler/oil-fix

fix: don't reference snacks in oil config
This commit is contained in:
raf 2025-04-02 17:07:25 +00:00 committed by GitHub
commit dafe978ffa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions
docs/release-notes
modules/plugins/utility/oil-nvim

View file

@ -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

View file

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