added is_mac

This commit is contained in:
Scott E. Graves 2023-07-16 21:14:05 -05:00
parent d179742c96
commit 7a1cfff6c5

View File

@ -1,5 +1,7 @@
local M = {}
M.is_mac = vim.fn.has("mac") == 1
M.is_windows = vim.fn.has("win32") == 1 or vim.fn.has("win64") == 1
return M