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