Is your feature request related to a problem? Please describe.
As a user, I want to reuse configuration logic across different config files, so I can reduce code duplication and better streamline my workflow.
Describe the solution you'd like
I currently have a simple script that takes local .gh-dash.yml files (if they exists) and create custom views for certain projects.
Here is an example of custom config for a specific project:
Then, if I want to adjust defaults, keybindings or anything else I can change it in one place and everywhere else will automatically get those updates.
Describe alternatives you've considered
Just copy/paste the changes I want to all gh-dash files (this is difficult as they are all in different places.
Create some sort of complex yq script that merges the base config with the custom config before opening gh-dash (via my ghd script)
Additional context
I may move all my gh-dash custom config files to a centralized place (like ~/.config/gh-dash/*.yml but that won't alleviate my current issue of not being able to share config values across different files.
Is your feature request related to a problem? Please describe. As a user, I want to reuse configuration logic across different config files, so I can reduce code duplication and better streamline my workflow.
Describe the solution you'd like I currently have a simple script that takes local
.gh-dash.yml
files (if they exists) and create custom views for certain projects.Here is an example of custom config for a specific project:
I would like to be able to extend a "base" configuration and allow gh-dash to read those configuration values
Then, if I want to adjust
defaults
,keybindings
or anything else I can change it in one place and everywhere else will automatically get those updates.Describe alternatives you've considered
yq
script that merges the base config with the custom config before opening gh-dash (via myghd
script)Additional context I may move all my gh-dash custom config files to a centralized place (like
~/.config/gh-dash/*.yml
but that won't alleviate my current issue of not being able to share config values across different files.