stevearc / dressing.nvim

Neovim plugin to improve the default vim.ui interfaces
MIT License
1.69k stars 32 forks source link

Incorrect installation snippet for Lazy.nvim #153

Closed kjkent closed 2 months ago

kjkent commented 2 months ago

The plugin code for Lazy.nvim needs to be a return statement :)

return {
    'stevearc/dressing.nvim',
    opts = {},
}

Many thanks to stevearc and all the collaborators!

stevearc commented 2 months ago

It only needs to be a return if you put it in a file by itself. I have no idea if you're going to put this in a separate file or include it in a larger list of plugins, so I'm keeping the structure agnostic.