10 lines
264 B
Lua
10 lines
264 B
Lua
-- close nvim-tree if it's last buffer open
|
|
vim.api.nvim_create_autocmd("BufEnter", {
|
|
pattern = "*",
|
|
callback = function()
|
|
if #vim.api.nvim_list_bufs() == 1 and vim.bo.filetype == "NvimTree" then
|
|
vim.cmd("quit")
|
|
end
|
|
end,
|
|
})
|