local M = { constants = { big_file_size_limit = 50 * 1024, -- 50KB }, tools = { is_version_gte_0_11 = function() local version = vim.version() if version.major > 0 then return true elseif version.major == 0 then return version.minor >= 11 end return false end, }, lsp_servers = { "goimports", "gofumpt", "basedpyright" } } return M