jacobinwwey_obsidian-NotEMD/.gemini/settings.json
2026-01-26 21:37:24 +08:00

21 lines
607 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"context": {
// 【关键设置 1】设置为 true强制 CLI 忽略项目的 .gitignore 文件
// 效果CLI 将不再自动忽略 git 忽略的文件,完全由你的 .geminiignore 决定
"ignoreGitIgnore": true,
// 【关键设置 2】显式包含路径 (支持 glob 通配符)
"include": [
".gemini/**/*",
"skills/**/*",
"src/**/*", // 别忘了加上你的源代码目录!
".gemini-clipboard/**/*",
"README.md"
]
},
// 【关键设置 3】开启 Skills 和 Rules 的实验性支持
"experimental": {
"skills": true
}
}