mirror of
https://github.com/hexedtech/codemp-nvim.git
synced 2025-04-07 11:21:31 +02:00
13 lines
206 B
Lua
13 lines
206 B
Lua
---@module 'annotations'
|
|
|
|
---@return Codemp?
|
|
local function load()
|
|
local ok, native = pcall(require, "codemp.native")
|
|
if ok then return native end
|
|
print(native)
|
|
return nil
|
|
end
|
|
|
|
return {
|
|
load = load,
|
|
}
|