summaryrefslogtreecommitdiff
path: root/which-key.lua
blob: cc9e55a6a664272ea09903a6309976b1efc719db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
return {
	-- Web icons
	{
		"nvim-tree/nvim-web-devicons",
	},

	-- which-key.nvim: shows available keybindings
	{
		"folke/which-key.nvim",
		event = "VeryLazy",
		config = function()
			require("which-key").setup({
				plugins = { spelling = true },
				win = { border = "rounded" },
			})
		end,
	},
}