mirror of
https://github.com/hexedtech/codemp-nvim.git
synced 2024-11-22 07:24:52 +01:00
fix: setup just changes config
so its not really needed
This commit is contained in:
parent
51d65eab3d
commit
8a12b109ff
1 changed files with 42 additions and 44 deletions
|
@ -12,6 +12,9 @@ if CODEMP == nil then
|
||||||
},
|
},
|
||||||
setup = function (opts)
|
setup = function (opts)
|
||||||
CODEMP.config = vim.tbl_extend('force', CODEMP.config, opts)
|
CODEMP.config = vim.tbl_extend('force', CODEMP.config, opts)
|
||||||
|
end
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
if CODEMP.native == nil then
|
if CODEMP.native == nil then
|
||||||
CODEMP.native = require('codemp.loader').load() -- make sure we can load the native library correctly, otherwise no point going forward
|
CODEMP.native = require('codemp.loader').load() -- make sure we can load the native library correctly, otherwise no point going forward
|
||||||
|
@ -54,9 +57,4 @@ if CODEMP == nil then
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
return CODEMP
|
|
||||||
end,
|
|
||||||
}
|
|
||||||
end
|
|
||||||
|
|
||||||
return CODEMP
|
return CODEMP
|
||||||
|
|
Loading…
Reference in a new issue