aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/neotree.lua
blob: 8437436aa40d99f17a5ac439299e905c189122b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
return {
	{
		"nvim-neo-tree/neo-tree.nvim",
		branch = "v3.x",
		dependencies = {
			"nvim-lua/plenary.nvim",
			"MunifTanjim/nui.nvim",
			"nvim-tree/nvim-web-devicons",
		},
		lazy = false,
		config = function()
			vim.keymap.set('n', '<C-n>', ':Neotree filesystem reveal left<CR>', {})
		end
	}
}