| 1 |
[submodule "vendor/llama.cpp"] |
| 2 |
path = vendor/llama.cpp |
| 3 |
url = https://github.com/ggml-org/llama.cpp |
| 4 |
# Don't surface build-artifact noise in the outer repo's git status. |
| 5 |
# `scripts/bump-llama-cpp.sh build` writes under vendor/llama.cpp/build/ |
| 6 |
# which the submodule's own .gitignore covers. |
| 7 |
ignore = untracked |
| 8 |
[submodule "sway"] |
| 9 |
path = sway |
| 10 |
url = https://github.com/tenseleyFlow/sway.git |
| 11 |
# Hide development noise (.venv, __pycache__, dist/) inside sway/ |
| 12 |
# from the outer repo's `git status`. sway's own .gitignore already |
| 13 |
# covers these locally. |
| 14 |
ignore = untracked |
| 15 |
|