-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(scheduler): remove unrelated file / directories under ~/.tabby/r…
…epositories (#1047)
- Loading branch information
Showing
2 changed files
with
28 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,17 +11,20 @@ Tabby server will look for a configuration file at `~/.tabby/config.toml` for ad | |
To enable repository level context for code completion, you can add the following to your configuration file: | ||
|
||
```toml title="~/.tabby/config.toml" | ||
# Index two repositories' source code as additional context for code completion. | ||
# Index three repositories' source code as additional context for code completion. | ||
|
||
[[repositories]] | ||
name = "tabby" | ||
git_url = "https://github.com/TabbyML/tabby.git" | ||
|
||
# git through ssh protocol. | ||
[[repositories]] | ||
name = "CTranslate2" | ||
git_url = "[email protected]:OpenNMT/CTranslate2.git" | ||
|
||
# local directory is also supported! | ||
[[repositories]] | ||
name = "repository_a" | ||
git_url = "file:///home/users/repository_a" | ||
``` | ||
|
||
|