Added treesitter

This commit is contained in:
wilmc
2026-06-24 18:54:31 +02:00
parent f45504df54
commit a73f64de81
4 changed files with 31 additions and 4 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', function()
MiniFiles.open()
end) -- file explorer