mirror of
https://github.com/hexedtech/codemp-nvim.git
synced 2024-11-22 15:34:53 +01:00
docs: fixed docs about building and bundling
This commit is contained in:
parent
8e4d400290
commit
6472cc8461
1 changed files with 3 additions and 3 deletions
|
@ -83,15 +83,15 @@ MP command autocompletes available options for current state, so cycle <Tab> if
|
||||||
* `vim.g.codemp_neo_tree` will enable the neo-tree window, instead of the crude integrated one
|
* `vim.g.codemp_neo_tree` will enable the neo-tree window, instead of the crude integrated one
|
||||||
|
|
||||||
## building
|
## building
|
||||||
this plugin relies on the native codemp lua bindings: just compile the main `codemp` project with `lua` feature enabled
|
this plugin relies on the native codemp lua bindings: just compile the main `codemp` project with `lua` feature enabled, rename the
|
||||||
and place a `lua.so` or `lua.dll` together with the plugin lua files while bundling
|
output library into `native.so` (or `.dll` or `.dylib`) and place it together with the plugin lua files while bundling
|
||||||
|
|
||||||
```
|
```
|
||||||
.config/
|
.config/
|
||||||
|-nvim/
|
|-nvim/
|
||||||
: |-lua/
|
: |-lua/
|
||||||
: : |-codemp/
|
: : |-codemp/
|
||||||
: : : |- lua.(so|dll)
|
: : : |- native.(so|dll|dylib)
|
||||||
: : : |- init.lua
|
: : : |- init.lua
|
||||||
: : : : ...
|
: : : : ...
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue