trying out nix
This commit is contained in:
commit
65bd68a260
18 changed files with 1217 additions and 0 deletions
26
lua/plugins/telescope.lua
Normal file
26
lua/plugins/telescope.lua
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
return {
|
||||
'nvim-telescope/telescope.nvim',
|
||||
version = false,
|
||||
dependencies = { 'nvim-lua/plenary.nvim' },
|
||||
opts = {
|
||||
defaults = {
|
||||
path_display = { "smart" },
|
||||
},
|
||||
pickers = {
|
||||
buffers = {
|
||||
path_display = "short",
|
||||
sort_mru = true,
|
||||
ignore_current_buffer = true,
|
||||
previewer = false,
|
||||
layout_config = {
|
||||
width = 80,
|
||||
height = 10,
|
||||
prompt_position = "top",
|
||||
},
|
||||
prompt_title = false,
|
||||
results_title = false,
|
||||
preview_title = false,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue