aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/lua/plugins/init.lua
blob: 9031f35346c7ff7e1a9c62bc5431e38b03eb9c24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
return {

    -- common dependacy
    "nvim-lua/plenary.nvim",

    {
        'numToStr/Comment.nvim', -- faster commentting
        event = 'BufEnter',
        opts = {
            mappings = {
                basic = true,
                extra = false
            }
        },
    },
    {
        "j-hui/fidget.nvim",
        event = { 'LspAttach' },
        opts = {}
    },
}