neovim conf part 8, now with snacks and mini

This commit is contained in:
RafayAhmad7548 2025-05-12 20:14:01 +05:00
parent 36c7c39213
commit bbd1f9f7c1
13 changed files with 208 additions and 127 deletions

View file

@ -10,6 +10,7 @@ return {
return vim.fn.executable 'make' == 1
end,
},
'nvim-telescope/telescope-ui-select.nvim',
},
config = function()
local actions = require('telescope.actions')
@ -28,9 +29,14 @@ return {
['<C-v>'] = actions.file_vsplit
}
}
},
extensions = {
['ui-select'] = { require('telescope.themes').get_dropdown({}) },
}
})
pcall(require('telescope').load_extension, 'fzf')
pcall(require("telescope").load_extension('ui-select'))
-- NOTE: Mappings --