From 62c0a81f6437523ef666680946540ab62e325ab8 Mon Sep 17 00:00:00 2001 From: Squeeeez Date: Sun, 28 Jan 2024 11:48:44 +0100 Subject: [PATCH] fix(config): add support for bsd operating systems (#1281) fixes https://github.com/nvim-neorg/neorg/issues/1273 --- lua/neorg/core/config.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/neorg/core/config.lua b/lua/neorg/core/config.lua index 771980917c..fc0c0fb86b 100644 --- a/lua/neorg/core/config.lua +++ b/lua/neorg/core/config.lua @@ -51,6 +51,8 @@ local function get_os_info() end end return "linux" + elseif os:find("bsd") then + return "bsd" end error("[neorg]: Unable to determine the currently active operating system!")