diff options
author | crupest <crupest@outlook.com> | 2023-10-30 22:29:25 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2023-10-30 22:29:25 +0800 |
commit | 78c906b053d233e19d0b4ba005ab6836c7bb84b3 (patch) | |
tree | 34f2ee14454041de0d8289e622f6a99791db80df /configs/nvim/lua/crupest/system.lua | |
parent | 376f33a464c5b4d3dfd48c36a48443126c004f82 (diff) | |
download | crupest-78c906b053d233e19d0b4ba005ab6836c7bb84b3.tar.gz crupest-78c906b053d233e19d0b4ba005ab6836c7bb84b3.tar.bz2 crupest-78c906b053d233e19d0b4ba005ab6836c7bb84b3.zip |
Update nvim config, more detect for omnisharp.
Diffstat (limited to 'configs/nvim/lua/crupest/system.lua')
-rw-r--r-- | configs/nvim/lua/crupest/system.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configs/nvim/lua/crupest/system.lua b/configs/nvim/lua/crupest/system.lua index f05b230..982aaa4 100644 --- a/configs/nvim/lua/crupest/system.lua +++ b/configs/nvim/lua/crupest/system.lua @@ -1,5 +1,7 @@ local is_win = vim.fn.has("win32") ~= 0 +local is_mac = vim.fn.has("mac") ~= 0 return { - is_win = is_win + is_win = is_win, + is_mac = is_mac } |