summaryrefslogtreecommitdiff
path: root/dot_config/nvim/lua/plugins/mini/init.lua
blob: aba0de0c3db183f8fe9a7e871e85fc30c0d6f745 (plain) (blame)
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
return {
	{
		'echasnovski/mini.nvim',
		version = false, -- beta
		config = function(_, opts)
			for k, v in pairs(opts) do
				require ("mini." .. k).setup(v)
			end
		end,
		opts = {
			ai = {},
			align = {},
			animate = {},
			basics = {},
			bracketed = {},
			comment = {},
			completion = {},
			cursorword = {},
			indentscope = {},
			jump2d = {},
			move = {},
			splitjoin = {},
			starter = {},
			statusline = {},
			surround = {},
			tabline = {},
			trailspace = {},
		}
	},
}