summaryrefslogtreecommitdiffstats
path: root/lua/plugins/general.lua
blob: f86270d69f2ecb63c6e821a62695f77aa5fad184 (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
26
return {
	{
		'tpope/vim-fugitive',
		event = {
			'BufReadPost',
			'BufNewFile'
		},
	},
	{
		'ludovicchabant/vim-gutentags',
		event = {
			'BufReadPost',
			'BufNewFile'
		},
	},
	{
		'max397574/better-escape.nvim',
		lazy = false,
		config = function()
			require('better_escape').setup {
				mapping = { 'jk' },
				timeout = 0.2 * vim.o.timeoutlen,
			}
		end,
	},
}