Feature hasn't been suggested before.
Describe the enhancement you want to request
Currently the plugin paths in tui.json only works if the path is absolute. Would make it easier to manage dotfiles across different machines with different users if the path would work with $HOME variable expansion.
Current:
{
"plugin": [
"/home/myuser/workspace/oc-timer/tui.tsx",
"/home/myuser/workspace/tokeninspector/plugins/opencode-tui/oc-tokeninspector.tsx"
]
}
Proposed:
{
"plugin": [
"$HOME/workspace/oc-timer/tui.tsx",
"$HOME/workspace/tokeninspector/plugins/opencode-tui/oc-tokeninspector.tsx"
]
}
Feature hasn't been suggested before.
Describe the enhancement you want to request
Currently the plugin paths in
tui.jsononly works if the path is absolute. Would make it easier to manage dotfiles across different machines with different users if the path would work with$HOMEvariable expansion.Current:
{ "plugin": [ "/home/myuser/workspace/oc-timer/tui.tsx", "/home/myuser/workspace/tokeninspector/plugins/opencode-tui/oc-tokeninspector.tsx" ] }Proposed:
{ "plugin": [ "$HOME/workspace/oc-timer/tui.tsx", "$HOME/workspace/tokeninspector/plugins/opencode-tui/oc-tokeninspector.tsx" ] }