Skip to content

Commit 075e845

Browse files
committed
fix: temporarily disable file validations for nvim < 0.11 for now
1 parent b8fc1a5 commit 075e845

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lua/copilot/config/init.lua

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ function M.merge_with_user_configs(user_configs)
4646
M[k] = v
4747
end
4848

49-
M.validate(M)
49+
if vim.fn.has("nvim-0.11") == 1 then
50+
M.validate(M)
51+
end
5052

5153
initialized = true
5254
end

0 commit comments

Comments
 (0)