working nvim config

This commit is contained in:
THEON-1
2025-10-17 14:02:36 +02:00
parent d2e8cd40f1
commit 050f0bcb20
9 changed files with 65 additions and 37 deletions

14
lua/plugins/fzf.lua Normal file
View File

@@ -0,0 +1,14 @@
return {
'ibhagwan/fzf-lua',
dependencies = {
'nvim-mini/mini.icons',
},
cmd = {
'FzfLua',
},
keys = {
{ '<C-f>', '<Cmd>FzfLua files<CR>', mode = 'n', desc = 'Search in project' },
{ '<leader>/', '<Cmd>FzfLua live_grep<CR>', mode = 'n', desc = 'Search string in project' },
},
}