feat: add architecture detection to disable incompatible plugins
This commit is contained in:
@@ -19,3 +19,13 @@ if prefix ~= nil then
|
|||||||
vim.g.useavante = false
|
vim.g.useavante = false
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- Define intel_arch
|
||||||
|
local intel_arch = { x64 = true, x86 = true }
|
||||||
|
local cur_arch = require('data.func').get_system_arch()
|
||||||
|
|
||||||
|
-- Check the platform and disable incompatible plugins
|
||||||
|
if not intel_arch[cur_arch] then
|
||||||
|
vim.g.useimage = false
|
||||||
|
vim.g.useavante = false
|
||||||
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user