diff --git a/src/segments/bun.go b/src/segments/bun.go
index 3d7a9334f9d9..6adbe7426338 100644
--- a/src/segments/bun.go
+++ b/src/segments/bun.go
@@ -9,7 +9,7 @@ func (b *Bun) Template() string {
}
func (b *Bun) Enabled() bool {
- b.extensions = []string{"bun.lockb"}
+ b.extensions = []string{"bun.lockb", "bun.lock"}
b.commands = []*cmd{
{
executable: "bun",
diff --git a/themes/schema.json b/themes/schema.json
index 1318b394b056..65b35acfec2f 100644
--- a/themes/schema.json
+++ b/themes/schema.json
@@ -900,7 +900,8 @@
"title": "Extensions",
"description": "The extensions to look for when determining if a folder is a Bun workspace",
"default": [
- "bun.lockb"
+ "bun.lockb",
+ "bun.lock"
],
"items": {
"type": "string"
diff --git a/website/docs/segments/cli/bun.mdx b/website/docs/segments/cli/bun.mdx
index 72305620490d..987f7a2670c1 100644
--- a/website/docs/segments/cli/bun.mdx
+++ b/website/docs/segments/cli/bun.mdx
@@ -23,16 +23,16 @@ import Config from "@site/src/components/Config.js";
## Properties
-| Name | Type | Default | Description |
-| ---------------------- | :--------: | :---------: | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| `home_enabled` | `boolean` | `false` | display the segment in the HOME folder or not |
-| `fetch_version` | `boolean` | `true` | fetch the active version or not; useful if all you need is an icon indicating `bun` |
-| `cache_duration` | `string` | `24h` | the duration for which the version will be cached. The duration is a string in the format `1h2m3s` and is parsed using the [time.ParseDuration] function from the Go standard library. To disable the cache, use `none` |
-| `missing_command_text` | `string` | | text to display when the command is missing |
-| `display_mode` | `string` | `context` |
- `always`: the segment is always displayed
- `files`: the segment is only displayed when file `extensions` listed are present
- `context`: displays the segment when the environment or files is active
|
-| `version_url_template` | `string` | | a go [text/template][go-text-template] [template][templates] that creates the URL of the version info / release notes |
-| `extensions` | `[]string` | `bun.lockb` | allows to override the default list of file extensions to validate |
-| `folders` | `[]string` | | allows to override the list of folder names to validate |
+| Name | Type | Default | Description |
+| ---------------------- | :--------: | :-------------------: | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
+| `home_enabled` | `boolean` | `false` | display the segment in the HOME folder or not |
+| `fetch_version` | `boolean` | `true` | fetch the active version or not; useful if all you need is an icon indicating `bun` |
+| `cache_duration` | `string` | `24h` | the duration for which the version will be cached. The duration is a string in the format `1h2m3s` and is parsed using the [time.ParseDuration] function from the Go standard library. To disable the cache, use `none` |
+| `missing_command_text` | `string` | | text to display when the command is missing |
+| `display_mode` | `string` | `context` | - `always`: the segment is always displayed
- `files`: the segment is only displayed when file `extensions` listed are present
- `context`: displays the segment when the environment or files is active
|
+| `version_url_template` | `string` | | a go [text/template][go-text-template] [template][templates] that creates the URL of the version info / release notes |
+| `extensions` | `[]string` | `bun.lockb, bun.lock` | allows to override the default list of file extensions to validate |
+| `folders` | `[]string` | | allows to override the list of folder names to validate |
## Template ([info][templates])