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
|
if type(result.default_prompt_blocks) == "table" then
|
||||||
config.default_prompt_blocks = result.default_prompt_blocks
|
config.default_prompt_blocks = result.default_prompt_blocks
|
||||||
end
|
end
|
||||||
-- Removed prompt_char_limit handling
|
|
||||||
if type(result.project_name) == "string" then
|
if type(result.project_name) == "string" then
|
||||||
config.project_name = result.project_name
|
config.project_name = result.project_name
|
||||||
end
|
end
|
||||||
|
|
@ -122,6 +121,9 @@ function M.load()
|
||||||
if type(result.include_file_contents) == "boolean" then
|
if type(result.include_file_contents) == "boolean" then
|
||||||
config.include_file_contents = result.include_file_contents
|
config.include_file_contents = result.include_file_contents
|
||||||
end
|
end
|
||||||
|
if type(result.ignore_files) == "table" then
|
||||||
|
config.ignore_files = result.ignore_files
|
||||||
|
end
|
||||||
if type(result.preview_changes) == "boolean" then
|
if type(result.preview_changes) == "boolean" then
|
||||||
config.preview_changes = result.preview_changes
|
config.preview_changes = result.preview_changes
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue