feat(neovim): remove nvim-lspfuzzy

This commit is contained in:
Felix Schröter 2022-05-03 20:44:25 +02:00
parent 832631be55
commit a168a4e1ab
Signed by: felschr
GPG key ID: 671E39E6744C807D
4 changed files with 1 additions and 26 deletions

View file

@ -100,22 +100,6 @@
"type": "github"
}
},
"nvim-lspfuzzy": {
"flake": false,
"locked": {
"lastModified": 1642350986,
"narHash": "sha256-qs20m7J8Apq336xTz0M/6eKVeTwkbTKa6mNqng8gZ5I=",
"owner": "ojroques",
"repo": "nvim-lspfuzzy",
"rev": "f41f8b03a8eacee578b2b4f14866163538fcfe37",
"type": "github"
},
"original": {
"owner": "ojroques",
"repo": "nvim-lspfuzzy",
"type": "github"
}
},
"pre-commit-hooks": {
"inputs": {
"flake-utils": [
@ -147,7 +131,6 @@
"nixpkgs": "nixpkgs",
"nur": "nur",
"nvim-kitty-navigator": "nvim-kitty-navigator",
"nvim-lspfuzzy": "nvim-lspfuzzy",
"pre-commit-hooks": "pre-commit-hooks"
}
}

View file

@ -25,18 +25,13 @@
inputs.flake-utils.follows = "flake-utils";
};
inputs.nvim-lspfuzzy = {
url = "github:ojroques/nvim-lspfuzzy";
flake = false;
};
inputs.nvim-kitty-navigator = {
url = "github:hermitmaster/nvim-kitty-navigator";
flake = false;
};
outputs = { self, nixpkgs, nixos-hardware, flake-utils, home-manager, nur
, pre-commit-hooks, nvim-lspfuzzy, nvim-kitty-navigator }@inputs:
, pre-commit-hooks, nvim-kitty-navigator }@inputs:
let
overlays = {
neovim = self: super:
@ -50,7 +45,6 @@
};
in {
vimPlugins = super.vimPlugins // {
nvim-lspfuzzy = buildVimPlugin "nvim-lspfuzzy" nvim-lspfuzzy;
nvim-kitty-navigator =
buildVimPlugin "nvim-kitty-navigator" nvim-kitty-navigator;
};

View file

@ -52,7 +52,6 @@ in {
# lsp
nvim-lspconfig
nvim-lightbulb
nvim-lspfuzzy
# dap
nvim-dap

View file

@ -16,7 +16,6 @@ local diagnosticls_on_attach = function(_, bufnr)
"au BufWritePre <buffer> lua vim.lsp.buf.formatting_seq_sync(nil, nil, { 'tsserver', 'diagnosticls' })")
end
require('lspfuzzy').setup {}
local config = require'lspconfig'
local capabilities_ = vim.lsp.protocol.make_client_capabilities()