aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim-lsp-installer/platform.lua
blob: 0b327cf2563623c4c13b5b45ec5bd4e39f35bd01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
local M = {}

function M.is_win()
    return vim.fn.has "win32" == 1
end

function M.is_unix()
    return vim.fn.has "unix" == 1
end

return M