nvim: plugins/lua: Add lspfuzzy
This commit is contained in:
parent
d400d70e6b
commit
62553ba8c7
2 changed files with 4 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
||||||
local nvim_lsp = require('lspconfig')
|
local nvim_lsp = require('lspconfig')
|
||||||
local completion = require('completion')
|
local completion = require('completion')
|
||||||
local lsp_status = require('lsp-status')
|
local lsp_status = require('lsp-status')
|
||||||
|
local lsp_fuzzy = require('lspfuzzy')
|
||||||
|
|
||||||
-- Taken from https://www.reddit.com/r/neovim/comments/gyb077/nvimlsp_peek_defination_javascript_ttserver/
|
-- Taken from https://www.reddit.com/r/neovim/comments/gyb077/nvimlsp_peek_defination_javascript_ttserver/
|
||||||
function preview_location(location, context, before_context)
|
function preview_location(location, context, before_context)
|
||||||
|
@ -76,6 +77,7 @@ end
|
||||||
|
|
||||||
local servers = { 'hls', 'rust_analyzer' }
|
local servers = { 'hls', 'rust_analyzer' }
|
||||||
for _, lsp in ipairs(servers) do
|
for _, lsp in ipairs(servers) do
|
||||||
|
lsp_fuzzy.setup {}
|
||||||
lsp_status.register_progress()
|
lsp_status.register_progress()
|
||||||
lsp_status.config({
|
lsp_status.config({
|
||||||
status_symbol = '',
|
status_symbol = '',
|
||||||
|
|
|
@ -119,6 +119,7 @@ local init = function ()
|
||||||
-- LSP
|
-- LSP
|
||||||
use {
|
use {
|
||||||
'neovim/nvim-lspconfig',
|
'neovim/nvim-lspconfig',
|
||||||
|
'ojroques/nvim-lspfuzzy',
|
||||||
config = "require('lsp')",
|
config = "require('lsp')",
|
||||||
}
|
}
|
||||||
use 'nvim-lua/lsp-status.nvim'
|
use 'nvim-lua/lsp-status.nvim'
|
||||||
|
|
Loading…
Reference in a new issue