fix(nvim-tree): update autocmd used to open nvim-tree

This commit is contained in:
Nydragon 2024-06-16 18:06:55 +09:00
parent 94f407ebc6
commit 692408380d
No known key found for this signature in database
GPG key ID: 14AA30A865EA1209

View file

@ -32,7 +32,8 @@ local function open_nvim_tree(data)
})
end
vim.api.nvim_create_autocmd({ "BufEnter" }, { callback = open_nvim_tree })
-- Using VimEnter is crucial, other autocmds will break the "focus = false" behaviour
vim.api.nvim_create_autocmd({ "VimEnter" }, { callback = open_nvim_tree })
-- From https://github.com/nvim-tree/nvim-tree.lua/issues/1368#issuecomment-1512248492
vim.api.nvim_create_autocmd("QuitPre", {