From 0460ccd3b97bc100ca1af0270588b4c76d29c4c4 Mon Sep 17 00:00:00 2001 From: GabrielFrigo <66432268+GabrielFrigo4@users.noreply.github.com> Date: Sun, 8 Dec 2024 15:00:33 -0300 Subject: [PATCH] Add MINGW32_NT to get_os_info (#1613) --- lua/neorg/core/config.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/neorg/core/config.lua b/lua/neorg/core/config.lua index 4fb7acd25..6a3efda83 100644 --- a/lua/neorg/core/config.lua +++ b/lua/neorg/core/config.lua @@ -36,7 +36,7 @@ local function get_os_info() local os = vim.loop.os_uname().sysname:lower() - if os:find("windows_nt") then + if os:find("windows_nt") or os:find("mingw32_nt") then return "windows" elseif os == "darwin" then return "mac"