mirror of
https://github.com/hexedtech/codemp-nvim.git
synced 2024-11-22 07:24:52 +01:00
fix: field name in config
This commit is contained in:
parent
76f7dc9261
commit
4141b01c42
2 changed files with 3 additions and 3 deletions
|
@ -85,8 +85,8 @@ MP command autocompletes available options for current state, so cycle <Tab> if
|
||||||
|
|
||||||
```lua
|
```lua
|
||||||
opts = {
|
opts = {
|
||||||
neo_tree = false,
|
neo_tree = false, -- enable neo-tree integration
|
||||||
callback_interval = 100, -- ms
|
timer_interval = 100, -- poll for codemp callbacks every __ ms
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ if CODEMP == nil then
|
||||||
native = nil,
|
native = nil,
|
||||||
config = {
|
config = {
|
||||||
neo_tree = false,
|
neo_tree = false,
|
||||||
callback_interval = 100,
|
timer_interval = 100,
|
||||||
},
|
},
|
||||||
setup = function (opts)
|
setup = function (opts)
|
||||||
CODEMP.config = vim.tbl_extend('force', CODEMP.config, opts)
|
CODEMP.config = vim.tbl_extend('force', CODEMP.config, opts)
|
||||||
|
|
Loading…
Reference in a new issue