Arch 2025 rice. Also contains a newly inspired neovim config.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
286 B

2 weeks ago
  1. return {
  2. "nvim-tree/nvim-tree.lua",
  3. version = "*",
  4. lazy = false,
  5. dependencies = {
  6. "nvim-tree/nvim-web-devicons",
  7. },
  8. config = function()
  9. local api = require("nvim-tree.api")
  10. vim.keymap.set("n", "<C-n>", api.tree.toggle)
  11. require("nvim-tree").setup {}
  12. end,
  13. }