first commit
This commit is contained in:
commit
15e643aa8e
41 changed files with 1623 additions and 0 deletions
32
lua/plugins/telescope-nvim.lua
Normal file
32
lua/plugins/telescope-nvim.lua
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
-- Fuzzy finder
|
||||
return {
|
||||
-- https://github.com/nvim-telescope/telescope.nvim
|
||||
'nvim-telescope/telescope.nvim',
|
||||
lazy = true,
|
||||
dependencies = {
|
||||
-- https://github.com/nvim-lua/plenary.nvim
|
||||
{ 'nvim-lua/plenary.nvim' },
|
||||
{
|
||||
-- https://github.com/nvim-telescope/telescope-fzf-native.nvim
|
||||
'nvim-telescope/telescope-fzf-native.nvim',
|
||||
build = 'make',
|
||||
cond = function()
|
||||
return vim.fn.executable 'make' == 1
|
||||
end,
|
||||
},
|
||||
},
|
||||
opts = {
|
||||
defaults = {
|
||||
layout_config = {
|
||||
vertical = {
|
||||
width = 0.75
|
||||
}
|
||||
},
|
||||
path_display = {
|
||||
filename_first = {
|
||||
reverse_directories = true
|
||||
}
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue