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 | e55f6a38f61672782775845745fc475e5a9ec720 (patch) | |
tree | 34f2ee14454041de0d8289e622f6a99791db80df /configs/nvim/lua/crupest/system.lua | |
parent | 177a21b135b572a414030f8590d06b9d906735a0 (diff) | |
download | crupest-e55f6a38f61672782775845745fc475e5a9ec720.tar.gz crupest-e55f6a38f61672782775845745fc475e5a9ec720.tar.bz2 crupest-e55f6a38f61672782775845745fc475e5a9ec720.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 } |