Newer
Older
nvim-config / lua / plugins / neo-tree.lua
@Marcus Bengtsson Marcus Bengtsson on 22 Feb 2024 270 bytes none-ls
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>", {})
	end,
}