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>
kickstart-without-pandoc
iGor milhit 2023-07-01 21:44:56 +02:00
parent 5ce8f4285a
commit f1d5af9e6f
Signed by: igor
GPG Key ID: 692D97C3D0228A99
2 changed files with 11 additions and 3 deletions

View File

@ -105,7 +105,7 @@ require('lazy').setup({
-- Adds LSP completion capabilities
'hrsh7th/cmp-nvim-lsp',
-- Adds completion capabilities for text in buffers
'hrsh7th/cmp-buffer',
@ -198,8 +198,13 @@ require('lazy').setup({
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'
},
@ -328,7 +333,10 @@ require('telescope').setup {
-- Enable telescope fzf native, if installed
pcall(require('telescope').load_extension, 'fzf')
-- Enable telescope luasnip extension, if installed
pcall(require('telescope').load_extension, 'luasnip')
-- Enable telescope-ag extension, if installed
pcall(require('telescope').load_extension, 'ag')
-- See `:help telescope.builtin`
vim.keymap.set('n', '<leader>?', require('telescope.builtin').oldfiles, { desc = '[?] Find recently opened files' })

View File

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