aboutsummaryrefslogtreecommitdiff
path: root/.config/nvim/lua/plugins/neotree.lua
blob: ed60017465a5db05fdda17775df2ac32a38cf1db (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
  }
}