aboutsummaryrefslogtreecommitdiff
path: root/plugs.lua
blob: 215b9690e9779421322afcfa6c3e6509c24da957 (plain)
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
local paqs = {
	"savq/paq-nvim";
	"folke/tokyonight.nvim";
	"nvim-lualine/lualine.nvim";
	"kyazdani42/nvim-web-devicons";
	{
		"nvim-treesitter/nvim-treesitter",
		run=function()
			vim.cmd("TSUpdate")
		end
	};
	{
		"neoclide/coc.nvim",
		branch = "release"
	};
	"nvim-lua/plenary.nvim";
	"nvim-telescope/telescope.nvim";
	-- most essential plugin
	"eandrju/cellular-automaton.nvim";
	"goolord/alpha-nvim";
	"tpope/vim-commentary";
	"LunarWatcher/auto-pairs";
}
if noob42 then table.insert(paqs, "42Paris/42header") end
require("paq")(paqs)