Add telescope lsp plugin
This commit is contained in:
parent
c8e1e7f11b
commit
243f61abac
3
after/plugin/telescope.vim
Normal file
3
after/plugin/telescope.vim
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
|
||||||
|
" search for symbols
|
||||||
|
map gs :Telescope lsp_dynamic_workspace_symbols<cr>
|
3
lua/conf/telescope.lua
Normal file
3
lua/conf/telescope.lua
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
telescope = require('telescope')
|
||||||
|
telescope.load_extension('fzf_native')
|
||||||
|
telescope.load_extension('lsp_handlers')
|
|
@ -39,7 +39,7 @@ Plug 'nvim-lua/plenary.nvim'
|
||||||
Plug 'scalameta/nvim-metals'
|
Plug 'scalameta/nvim-metals'
|
||||||
Plug 'williamboman/nvim-lsp-installer'
|
Plug 'williamboman/nvim-lsp-installer'
|
||||||
|
|
||||||
Plug 'nvim-treesitter/nvim-treesitter', {'branch': '0.5-compat', 'do': ':TSUpdate'}
|
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
|
||||||
Plug 'nvim-lua/lsp-status.nvim'
|
Plug 'nvim-lua/lsp-status.nvim'
|
||||||
Plug 'RishabhRD/popfix'
|
Plug 'RishabhRD/popfix'
|
||||||
Plug 'RishabhRD/nvim-lsputils'
|
Plug 'RishabhRD/nvim-lsputils'
|
||||||
|
@ -49,6 +49,9 @@ Plug 'folke/lsp-colors.nvim'
|
||||||
Plug 'nvim-lua/popup.nvim'
|
Plug 'nvim-lua/popup.nvim'
|
||||||
Plug 'nvim-lua/plenary.nvim'
|
Plug 'nvim-lua/plenary.nvim'
|
||||||
Plug 'nvim-telescope/telescope.nvim'
|
Plug 'nvim-telescope/telescope.nvim'
|
||||||
|
Plug 'nvim-telescope/telescope-fzf-native.nvim', { 'do': 'cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build --config Release && cmake --install build --prefix build' }
|
||||||
|
Plug 'gbrlsnchs/telescope-lsp-handlers.nvim'
|
||||||
|
|
||||||
|
|
||||||
Plug 'machakann/vim-highlightedyank'
|
Plug 'machakann/vim-highlightedyank'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue