summary refs log tree commit diff stats
path: root/.config/nvim/lua/plugins/comment.lua
blob: c37d7cd3dbe7918769ffc23d207e085cba44b471 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
return {

    {
        "numToStr/Comment.nvim",
        opts = {
            -- Visual mappings
            opleader = {
                line = '<Space>/',
                block = '<Space>?',
            },

            -- Normal mappings
            toggler = {
                line = '<Space>/',
                block = '<Space>?',
            }
        },
        lazy = false
    }

}