swaydots

my dotfiles
git clone https://git.awy.one/swaydots.git
Log | Files | Refs | README | LICENSE

neotree.lua (329B)


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