aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/pluginsconfig/init.lua
blob: 3b2dcea2c3890942f1ca17e7b82f358b3f4a701b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
local plugins = {
	'nvim-tree',
	'mason',
	'mason-lspconfig',
	'gruvbox',
	'lualine',
	'treesitter',
	'colorizer',
	'nvim-cmp',
	'telescope',
	'indent-blankline',
	'undotree',
	'Comment',
	'nvim-lspconfig',
	'lsp_lines',
	'alpha',
}

for _, plugin in ipairs(plugins) do
  pcall(require, "pluginsconfig." .. plugin)
end
require'nvim-tree'.setup {}