Newer
Older
nvim-config / lua / plugins / neo-tree.lua
@Marcus Bengtsson Marcus Bengtsson on 20 Feb 2024 285 bytes Initial commit
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,
}