mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-24 01:38:47 +02:00
enc: testing kotlin on windows
This commit is contained in:
parent
ef6ac90acf
commit
1d622094b9
5 changed files with 31 additions and 19 deletions
|
@ -1,21 +1,25 @@
|
|||
local M={}
|
||||
local M = {}
|
||||
|
||||
M.cheack=function ()
|
||||
local sts= false
|
||||
M.cheack = function()
|
||||
local sts = false
|
||||
if pcode.active_javascript_config.active or false then
|
||||
sts=true
|
||||
sts = true
|
||||
elseif pcode.active_rust_config or false then
|
||||
sts=true
|
||||
sts = true
|
||||
elseif pcode.active_php_config or false then
|
||||
sts=true
|
||||
sts = true
|
||||
elseif pcode.active_golang_config or false then
|
||||
sts=true
|
||||
sts = true
|
||||
elseif pcode.active_python_config or false then
|
||||
sts=true
|
||||
sts = true
|
||||
elseif pcode.active_cpp_config or false then
|
||||
sts=true
|
||||
sts = true
|
||||
elseif pcode.active_java_config.active or false then
|
||||
sts=true
|
||||
sts = true
|
||||
elseif pcode.active_deno_config or false then
|
||||
sts = true
|
||||
elseif pcode.active_kotlin_config or false then
|
||||
sts = true
|
||||
end
|
||||
return sts
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue