aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/lua/plugins/init.lua
blob: d9c31dda4b91b7e42762caeb43ffdcae330ef104 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
return {

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

    -- git
    'tpope/vim-fugitive', -- close to native git command integrations


    -- completion
    -- TODO:config completion and setup binds
    'hrsh7th/nvim-cmp',
    {
        'hrsh7th/cmp-nvim-lsp',
        dependencies = { {'hrsh7th/nvim-cmp'}, {'neovim/nvim-lspconfig'} }
    },
    {
        'hrsh7th/cmp-path',
        dependencies = { 'hrsh7th/nvim-cmp' }
    },
    {
        'kdheepak/cmp-latex-symbols',
        dependencies = { 'hrsh7th/nvim-cmp' }
    },




    {
        'numToStr/Comment.nvim', -- faster commentting
        lazy = false,
        opts = {
            mappings = {
                basic = true,
                extra = false
            }
        },
        -- config = function()
        --     require('Comment').setup()
        -- end
    },

    -- cosmetic
    -- 'kyazdani42/nvim-web-devicons',

}