feat: initial commit

This commit is contained in:
hmeens
2026-03-20 16:44:13 +01:00
commit 2d9f13f9ab
28 changed files with 2716 additions and 0 deletions

18
nvim/plugin/telescope.lua Normal file
View File

@@ -0,0 +1,18 @@
-- [[ Configure Telescope ]]
-- See `:help telescope` and `:help telescope.setup()`
require('telescope').setup {
defaults = {
mappings = {
i = {
['<C-u>'] = false,
['<C-d>'] = false,
},
},
},
}
local builtin = require('telescope.builtin')
vim.keymap.set('n', '<leader>pf', builtin.find_files, {noremap = true})
vim.keymap.set('n', '<leader>pg', builtin.live_grep, {noremap = true})
vim.keymap.set('n', '<C-p>', builtin.git_files, {noremap = true})