fix(nvim-tree): update autocmd used to open nvim-tree
This commit is contained in:
parent
94f407ebc6
commit
692408380d
1 changed files with 2 additions and 1 deletions
|
@ -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", {
|
||||
|
|
Loading…
Add table
Reference in a new issue