disrupted / kpops.nvim

Neovim plugin for integrating KPOps
MIT License
2 stars 0 forks source link

Notice of Breaking Changes #1

Open disrupted opened 3 months ago

disrupted commented 3 months ago

subscribe to this ticket to be notified about breaking changes

disrupted commented 3 months ago

https://github.com/disrupted/kpops.nvim/commit/1fe216ccebfd0afb94a765046a8d54306619e5ac improves lazy-loading and interoperability with regular YAML language server by registering a custom filetype yaml.kpops for KPOps files

plugin config has to be updated:

{
    'disrupted/kpops.nvim',
-   ft = 'yaml',
+   ft = 'yaml.kpops',
    opts = {
        settings = {
            kpops = {
                generate_schema = true,
            },
        },
    },
    dependencies = { 'neovim/nvim-lspconfig' }
}