fix: field name in config

This commit is contained in:
əlemi 2024-09-06 03:35:39 +02:00
parent 76f7dc9261
commit 4141b01c42
Signed by: alemi
GPG key ID: A4895B84D311642C
2 changed files with 3 additions and 3 deletions

View file

@ -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
} }
``` ```

View file

@ -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)