telescope: add a plugin to use Ag

- Adds a plugin to use Ag The Silversearcher with Telescope.
- Improves some comments.

Co-Authored-by: iGor milhit <igor@milhit.ch>
main
iGor milhit 2023-07-01 21:44:56 +02:00
parent 4484afbca5
commit 8162a01e8e
Signed by: igor
GPG Key ID: 692D97C3D0228A99
2 changed files with 11 additions and 3 deletions

View File

@ -198,8 +198,13 @@ require('lazy').setup({
end, end,
}, },
-- Extension to telescope to use Ag (or ripgrep) to filter results
{ {
'kelly-lin/telescope-ag'
},
-- Allow to search for snippets -- Allow to search for snippets
{
'benfowler/telescope-luasnip.nvim' 'benfowler/telescope-luasnip.nvim'
}, },
@ -328,7 +333,10 @@ require('telescope').setup {
-- Enable telescope fzf native, if installed -- Enable telescope fzf native, if installed
pcall(require('telescope').load_extension, 'fzf') pcall(require('telescope').load_extension, 'fzf')
-- Enable telescope luasnip extension, if installed
pcall(require('telescope').load_extension, 'luasnip') pcall(require('telescope').load_extension, 'luasnip')
-- Enable telescope-ag extension, if installed
pcall(require('telescope').load_extension, 'ag')
-- See `:help telescope.builtin` -- See `:help telescope.builtin`
vim.keymap.set('n', '<leader>?', require('telescope.builtin').oldfiles, { desc = '[?] Find recently opened files' }) vim.keymap.set('n', '<leader>?', require('telescope.builtin').oldfiles, { desc = '[?] Find recently opened files' })

View File

@ -22,7 +22,7 @@ return {
width = 85, width = 85,
height = .8, height = .8,
options = { options = {
-- Disable line numbering. -- Disable line numbering, signcolumn and colorcolumn.
number = false, number = false,
signcolumn = "no", signcolumn = "no",
}, },