summaryrefslogtreecommitdiff
path: root/dot_config/nvim/lua/plugins/commenter.lua
blob: cdc88fe28e46d18a52a9566b1e56c020f04c3447 (plain)
1
2
3
4
5
6
7
8
9
10
11
return {
    'echasnovski/mini.nvim', 
    version = false,
    config = function(_, opts)
        -- I'm not sure why this is requireed. I thought Lazy.nvim didn't require the
        -- config key if the only line in the function was to call setup().
        -- However, without this key, this plugin fails to load with the error
        -- "mini" could not be found
        require("mini.comment").setup(opts)
    end,
}