-- Install mini.nvim vim.pack.add({ 'https://github.com/nvim-mini/mini.nvim' }) -- Fuzzy finder require('mini.pick').setup() -- File explorer require('mini.files').setup() -- Keymaps for the above local map = vim.keymap.set map('n', '', 'Pick files') -- find file map('n', '', 'Pick grep_live') -- live grep map('n', '', 'Pick buffers') -- buffer list map('n', 'fe', MiniFiles.open) -- file explorer