advent of neovim suggestions to telescope and some remaps
This commit is contained in:
@@ -2,7 +2,12 @@ return {
|
||||
'FabianWirth/search.nvim',
|
||||
dependencies = {
|
||||
'nvim-lua/plenary.nvim',
|
||||
'nvim-telescope/telescope.nvim',
|
||||
{
|
||||
'nvim-telescope/telescope.nvim',
|
||||
dependencies = {
|
||||
{ 'nvim-telescope/telescope-fzf-native.nvim', build = 'make' }
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
config = function()
|
||||
@@ -19,15 +24,16 @@ return {
|
||||
vimgrep_arguments = vimgrep_arguments,
|
||||
file_ignore_patterns = {
|
||||
'node_modules',
|
||||
'.git/'
|
||||
}
|
||||
},
|
||||
pickers = {
|
||||
find_files = {
|
||||
find_command = { 'rg', '--files', '--hidden', '--glob', '!**/.git/*' },
|
||||
}
|
||||
extensions = {
|
||||
fzf = {}
|
||||
}
|
||||
})
|
||||
|
||||
telescope.load_extension('fzf')
|
||||
|
||||
local search = require('search')
|
||||
local builtin = require('telescope.builtin')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user