nvim: Fix codecompanion-history option setting
Missing encasing opts table so the options were ignored, now added.
This commit is contained in:
parent
1c96ea6d81
commit
5c565b61e1
1 changed files with 6 additions and 4 deletions
|
|
@ -175,10 +175,12 @@ return {
|
|||
extensions = {
|
||||
history = {
|
||||
enabled = true,
|
||||
auto_save = false,
|
||||
expiration_days = 7,
|
||||
picker = "fzf-lua",
|
||||
delete_on_clearing_chat = true,
|
||||
opts = {
|
||||
auto_save = true,
|
||||
expiration_days = 14,
|
||||
picker = "fzf-lua",
|
||||
delete_on_clearing_chat = true,
|
||||
},
|
||||
},
|
||||
gitcommit = {
|
||||
enabled = true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue