nvim: add telescope plugin
This commit is contained in:
parent
47bc5bf1e1
commit
5d63069ce1
2 changed files with 29 additions and 37 deletions
|
@ -138,7 +138,6 @@ return require('packer').startup({function()
|
|||
config = function()
|
||||
vim.g.ale_disable_lsp = 1
|
||||
end
|
||||
|
||||
}
|
||||
---- DAP (Debug Adapter Protocol)
|
||||
use { -- nvim-dap: DAP support
|
||||
|
@ -167,6 +166,13 @@ return require('packer').startup({function()
|
|||
}
|
||||
|
||||
---- Other IDE features
|
||||
use { -- telescope: fuzzy finder for finding fuzzy things
|
||||
'nvim-telescope/telescope.nvim',
|
||||
requires = { {'nvim-lua/plenary.nvim'} },
|
||||
config = function()
|
||||
require('blake.other').telescope()
|
||||
end
|
||||
}
|
||||
use { -- git integration
|
||||
'lewis6991/gitsigns.nvim',
|
||||
requires = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue