nvim: lua: lsp: Drop lspfuzzy

Now that we are using nvim-bqf, we have a nicer interface to quickfix
list and nvim-bqf also integrates fzf mode. So drop lspfuzzy.
This commit is contained in:
Sanchayan Maity 2021-02-02 20:28:51 +05:30
parent cb6eef2314
commit a18a122b97
2 changed files with 0 additions and 3 deletions

View file

@ -1,5 +1,4 @@
local nvim_lsp = require('lspconfig')
local lsp_fuzzy = require('lspfuzzy')
local protocol = require('vim.lsp.protocol')
-- Taken from https://www.reddit.com/r/neovim/comments/gyb077/nvimlsp_peek_defination_javascript_ttserver/
@ -102,7 +101,6 @@ end
local servers = { 'hls', 'rust_analyzer' }
for _, lsp in ipairs(servers) do
lsp_fuzzy.setup {}
nvim_lsp[lsp].setup {
on_attach = on_attach,
}

View file

@ -116,7 +116,6 @@ local init = function ()
-- LSP
use {
'neovim/nvim-lspconfig',
'ojroques/nvim-lspfuzzy',
}
-- Language support & syntax highlighting
-- Haskell