Files
dotfiles/private_dot_config/nvim/lua/config/autocmd.lua
2026-01-25 08:56:49 +01:00

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,
})