Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feat] User config plugin generation #9

Open
1 of 3 tasks
quantumfate opened this issue Aug 16, 2023 · 0 comments
Open
1 of 3 tasks

[Feat] User config plugin generation #9

quantumfate opened this issue Aug 16, 2023 · 0 comments
Assignees
Labels
enhancement New feature or request
Milestone

Comments

@quantumfate
Copy link
Owner

quantumfate commented Aug 16, 2023

As a user I want to be able to create plugin configurations on the fly that are easily picked up by the runtime logic.

  • update genconfic.sh to create a user config plugin scope
  • implement a seperate template repository for the configuration
  • implement a configuration template for each plugin that provides plugin options, lazy specs and a strategy ([Feat] Move qvim to the state directory #5 ):

General:

local M = {}

-- global options for all user configurations
M.strategy = "override" -- | "keep" | "ignore"
-- these can override the behavior
M.plugin = {}
M.spec = {}

return M

Plugin specific:

local M = {}


-- these can override the behavior
M.plugin = {
    __strategy = "override" -- | "keep" | "ignore"
}
M.spec = {}

return M
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
Development

When branches are created from issues, their pull requests are automatically linked.

1 participant