andreyorst / plug.kak

Plugin manager for Kakoune
MIT License
197 stars 18 forks source link

`demand` switch #71

Closed andreyorst closed 4 years ago

andreyorst commented 5 years ago

To allow automatically loading plugins without using require-mode in config block:

plug "author/plugin" defer module %{
     set-option global option value
} demand

instead of:

plug "author/plugin" defer module %{
    set-option global option value
} config %{
    require-module module
}