mirror of
https://github.com/hexedtech/codemp-nvim.git
synced 2024-11-22 07:24:52 +01:00
12 lines
191 B
Lua
12 lines
191 B
Lua
---@module 'annotations'
|
|
|
|
---@return Codemp?
|
|
local function load()
|
|
local ok, native = pcall(require, "codemp.native")
|
|
if ok then return native end
|
|
return nil
|
|
end
|
|
|
|
return {
|
|
load = load,
|
|
}
|