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

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