caio.co/de/dotfiles


Rely on builtin lsp and completions 💬 by Caio a year ago (log)
And get rid of unused stuff

Blob config/nvim/lua/plugins.lua

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
return require('packer').startup(function()
    use 'wbthomason/packer.nvim'

    -- General-purpose editing plugins
    use {
        'tpope/vim-commentary',
        'tpope/vim-repeat',
        'tpope/vim-surround',
    }

    use {
        'tpope/vim-fugitive',
        cmd = 'Git',
    }

    use {
        'windwp/nvim-autopairs',
        event = 'InsertEnter',
        config = function()
            require('nvim-autopairs').setup({})
        end
    }

    use { 'qpkorr/vim-renamer', cmd = 'Renamer' }

    use {
        'mcchrish/zenbones.nvim',
        config = function()
            vim.g.zenbones_compat = 1
            vim.g.zenbones_darkness = "stark" -- warm/undef
            vim.g.zenbones_lightness = "bright" -- dim/undef
            vim.opt.termguicolors = true
            vim.opt.background = "light"
            vim.cmd("colorscheme zenbones")
        end
    }

    use {
        'nvim-telescope/telescope.nvim',
        requires = {{'nvim-lua/plenary.nvim'}},
        config = function()
            require('config.telescope')
        end
    }
end)