fix: add ignore_files to config
This commit is contained in:
parent
32fcc2622f
commit
7fb8671840
1 changed files with 3 additions and 1 deletions
|
|
@ -109,7 +109,6 @@ function M.load()
|
|||
if type(result.default_prompt_blocks) == "table" then
|
||||
config.default_prompt_blocks = result.default_prompt_blocks
|
||||
end
|
||||
-- Removed prompt_char_limit handling
|
||||
if type(result.project_name) == "string" then
|
||||
config.project_name = result.project_name
|
||||
end
|
||||
|
|
@ -122,6 +121,9 @@ function M.load()
|
|||
if type(result.include_file_contents) == "boolean" then
|
||||
config.include_file_contents = result.include_file_contents
|
||||
end
|
||||
if type(result.ignore_files) == "table" then
|
||||
config.ignore_files = result.ignore_files
|
||||
end
|
||||
if type(result.preview_changes) == "boolean" then
|
||||
config.preview_changes = result.preview_changes
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue