mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
24 lines
530 B
Lua
24 lines
530 B
Lua
|
local M={}
|
||
|
|
||
|
M.cheack=function ()
|
||
|
local sts= false
|
||
|
if pcode.active_javascript_config.active or false then
|
||
|
sts=true
|
||
|
elseif pcode.active_rust_config or false then
|
||
|
sts=true
|
||
|
elseif pcode.active_php_config or false then
|
||
|
sts=true
|
||
|
elseif pcode.active_golang_config or false then
|
||
|
sts=true
|
||
|
elseif pcode.active_python_config or false then
|
||
|
sts=true
|
||
|
elseif pcode.active_cpp_config or false then
|
||
|
sts=true
|
||
|
elseif pcode.active_java_config.active or false then
|
||
|
sts=true
|
||
|
end
|
||
|
return sts
|
||
|
end
|
||
|
|
||
|
return M
|