updated the config files

This commit is contained in:
2026-06-23 16:07:07 +02:00
parent 0643da425f
commit f45504df54
13 changed files with 114 additions and 153 deletions
+18
View File
@@ -0,0 +1,18 @@
-- 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', '<M-O>', '<cmd>Pick files<CR>') -- find file
map('n', '<M-S>', '<cmd>Pick grep_live<CR>') -- live grep
map('n', '<M-B>', '<cmd>Pick buffers<CR>') -- buffer list
map('n', '<leader>fe', MiniFiles.open) -- file explorer