| 1234567891011121314151617 | local window_width_limit = 100local conditions = {  buffer_not_empty = function()    return vim.fn.empty(vim.fn.expand "%:t") ~= 1  end,  hide_in_width = function()    return vim.o.columns > window_width_limit  end,  -- check_git_workspace = function()  --   local filepath = vim.fn.expand "%:p:h"  --   local gitdir = vim.fn.finddir(".git", filepath .. ";")  --   return gitdir and #gitdir > 0 and #gitdir < #filepath  -- end,}return conditions
 |