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
|
||||
opts = {
|
||||
neo_tree = false,
|
||||
callback_interval = 100, -- ms
|
||||
neo_tree = false, -- enable neo-tree integration
|
||||
timer_interval = 100, -- poll for codemp callbacks every __ ms
|
||||
}
|
||||
```
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ if CODEMP == nil then
|
|||
native = nil,
|
||||
config = {
|
||||
neo_tree = false,
|
||||
callback_interval = 100,
|
||||
timer_interval = 100,
|
||||
},
|
||||
setup = function (opts)
|
||||
CODEMP.config = vim.tbl_extend('force', CODEMP.config, opts)
|
||||
|
|
Loading…
Reference in a new issue