🐛 fix(multiplatform): adjustments to support multiple platforms

This commit is contained in:
2024-09-06 10:48:58 -04:00
parent 273580f533
commit 03ddd8b2c1
25 changed files with 711 additions and 182 deletions
+13
View File
@@ -24,4 +24,17 @@ function M.disable()
return false
end
---@function Function to setup blinky cursor option
---@param enable boolean|nil enable blinky cursor option
function M.setup(enable)
if enable then
vim.g.blinky = enable
end
if vim.g.blinky ~= false then
M.enable()
else
M.disable()
end
end
return M