diff options
author | 2025-05-08 13:24:29 +0300 | |
---|---|---|
committer | 2025-05-08 13:24:29 +0300 | |
commit | beb2fc807d3a9c3f23ab748959eef95c62bcf3db (patch) | |
tree | 80acedd1f3be8bf86d643ac33d2debc0f8dc7ff7 /lua | |
parent | feat: add `oil.nvim` (diff) | |
download | neovim-configuration-beb2fc807d3a9c3f23ab748959eef95c62bcf3db.tar.gz neovim-configuration-beb2fc807d3a9c3f23ab748959eef95c62bcf3db.tar.bz2 neovim-configuration-beb2fc807d3a9c3f23ab748959eef95c62bcf3db.tar.lz neovim-configuration-beb2fc807d3a9c3f23ab748959eef95c62bcf3db.tar.xz neovim-configuration-beb2fc807d3a9c3f23ab748959eef95c62bcf3db.tar.zst neovim-configuration-beb2fc807d3a9c3f23ab748959eef95c62bcf3db.zip |
fix: `oil.nvim` not loading at start
Diffstat (limited to '')
-rw-r--r-- | lua/config/plugins/extra.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/config/plugins/extra.lua b/lua/config/plugins/extra.lua index 6360aa7..2b1d8ef 100644 --- a/lua/config/plugins/extra.lua +++ b/lua/config/plugins/extra.lua @@ -105,7 +105,7 @@ return { { "oil.nvim", -- NOTE: lazy loading is not recommended - -- event = "DeferredUIEnter", + event = "DeferredUIEnter", after = function(_) require("oil").setup() end, |