Nvim: add telescope-ui-select

This commit is contained in:
Marko Korhonen 2022-03-02 18:00:05 +02:00
parent d4ba7a72d9
commit 8604de5ffe
2 changed files with 4 additions and 2 deletions

View file

@ -1,3 +1,4 @@
local telescope = require('telescope')
telescope.setup {}
telescope.load_extension('fzf')
telescope.load_extension('ui-select')

View file

@ -46,12 +46,13 @@ require('packer').startup(function()
-- Tree explorer
use {'kyazdani42/nvim-tree.lua', requires = 'kyazdani42/nvim-web-devicons'}
-- Telescope and fzf extension for it
-- Telescope
use {
'nvim-telescope/telescope.nvim',
requires = {{'nvim-lua/plenary.nvim'}}
}
use {'nvim-telescope/telescope-fzf-native.nvim', run = 'make'}
use {'nvim-telescope/telescope-fzf-native.nvim', run = 'make'} -- Use fzf for fuzzy finder
use {'nvim-telescope/telescope-ui-select.nvim'} -- Replace vim built in select with telescope
-- Do stuff as sudo
use 'lambdalisue/suda.vim'