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 = {
|
extensions = {
|
||||||
history = {
|
history = {
|
||||||
enabled = true,
|
enabled = true,
|
||||||
auto_save = false,
|
opts = {
|
||||||
expiration_days = 7,
|
auto_save = true,
|
||||||
picker = "fzf-lua",
|
expiration_days = 14,
|
||||||
delete_on_clearing_chat = true,
|
picker = "fzf-lua",
|
||||||
|
delete_on_clearing_chat = true,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
gitcommit = {
|
gitcommit = {
|
||||||
enabled = true,
|
enabled = true,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue