aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/init.lua
blob: 306e9a24a5027ddfa544c777ae5ab891462a6a8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
return {
	{
		"luochen1990/rainbow",
		init = function()
			vim.g.rainbow_active = 1
		end
	},
	{
		"jamessan/vim-gnupg"
	},
	{
                "nvim-treesitter/nvim-treesitter",
                config = function()
                        require'nvim-treesitter.configs'.setup{
                                ensure_installed = {"c", "cpp", "lua", "vim", "bash", "make", "rust"},
                                highlight = {
                                        enable = true
                                }
                        }
                end
        }
}