-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbwrap.conf.example
More file actions
36 lines (30 loc) · 1.13 KB
/
bwrap.conf.example
File metadata and controls
36 lines (30 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# opencode bwrap configuration file
# Format: type:source:destination
#
# Available types:
# bind - Read-write bind (source must exist)
# ro-bind - Read-only bind (source must exist)
# bind-try - Read-write bind (ignored if source doesn't exist)
# ro-bind-try - Read-only bind (ignored if source doesn't exist)
# symlink - Create symbolic link
#
# Both source and destination support ~ for $HOME
# Development tools
# bind:~/.local/share/go:~/.local/share/go
# bind:~/.bun:~/.bun
# bind:~/.m2:~/.m2
# bind:~/.config/git:~/.config/git
# bind:~/.cargo:~/.cargo
# bind:~/.rustup:~/.rustup
# bind:~/.npm:~/.npm
# bind:~/.pnpm-store:~/.pnpm-store
# Font cache
# bind:~/.cache/fontconfig:~/.cache/fontconfig
# Oh My OpenCode extension cache (optional, only needed if using extensions)
# bind:~/.cache/oh-my-opencode:~/.cache/oh-my-opencode
# Quick access to current directory (useful for ad-hoc work)
# Uncomment this line to automatically mount whatever directory you run opencode-bwrap from
# bind:$PWD:$PWD
# Custom project directories (examples)
# bind:~/Projects/myapp:~/Projects/myapp
# ro-bind:~/Documents:~/Documents