feat(neovim): remove nvim-lspfuzzy
This commit is contained in:
parent
832631be55
commit
a168a4e1ab
17
flake.lock
17
flake.lock
|
@ -100,22 +100,6 @@
|
||||||
"type": "github"
|
"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": {
|
"pre-commit-hooks": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"flake-utils": [
|
"flake-utils": [
|
||||||
|
@ -147,7 +131,6 @@
|
||||||
"nixpkgs": "nixpkgs",
|
"nixpkgs": "nixpkgs",
|
||||||
"nur": "nur",
|
"nur": "nur",
|
||||||
"nvim-kitty-navigator": "nvim-kitty-navigator",
|
"nvim-kitty-navigator": "nvim-kitty-navigator",
|
||||||
"nvim-lspfuzzy": "nvim-lspfuzzy",
|
|
||||||
"pre-commit-hooks": "pre-commit-hooks"
|
"pre-commit-hooks": "pre-commit-hooks"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,18 +25,13 @@
|
||||||
inputs.flake-utils.follows = "flake-utils";
|
inputs.flake-utils.follows = "flake-utils";
|
||||||
};
|
};
|
||||||
|
|
||||||
inputs.nvim-lspfuzzy = {
|
|
||||||
url = "github:ojroques/nvim-lspfuzzy";
|
|
||||||
flake = false;
|
|
||||||
};
|
|
||||||
|
|
||||||
inputs.nvim-kitty-navigator = {
|
inputs.nvim-kitty-navigator = {
|
||||||
url = "github:hermitmaster/nvim-kitty-navigator";
|
url = "github:hermitmaster/nvim-kitty-navigator";
|
||||||
flake = false;
|
flake = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs, nixos-hardware, flake-utils, home-manager, nur
|
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
|
let
|
||||||
overlays = {
|
overlays = {
|
||||||
neovim = self: super:
|
neovim = self: super:
|
||||||
|
@ -50,7 +45,6 @@
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
vimPlugins = super.vimPlugins // {
|
vimPlugins = super.vimPlugins // {
|
||||||
nvim-lspfuzzy = buildVimPlugin "nvim-lspfuzzy" nvim-lspfuzzy;
|
|
||||||
nvim-kitty-navigator =
|
nvim-kitty-navigator =
|
||||||
buildVimPlugin "nvim-kitty-navigator" nvim-kitty-navigator;
|
buildVimPlugin "nvim-kitty-navigator" nvim-kitty-navigator;
|
||||||
};
|
};
|
||||||
|
|
|
@ -52,7 +52,6 @@ in {
|
||||||
# lsp
|
# lsp
|
||||||
nvim-lspconfig
|
nvim-lspconfig
|
||||||
nvim-lightbulb
|
nvim-lightbulb
|
||||||
nvim-lspfuzzy
|
|
||||||
|
|
||||||
# dap
|
# dap
|
||||||
nvim-dap
|
nvim-dap
|
||||||
|
|
|
@ -16,7 +16,6 @@ local diagnosticls_on_attach = function(_, bufnr)
|
||||||
"au BufWritePre <buffer> lua vim.lsp.buf.formatting_seq_sync(nil, nil, { 'tsserver', 'diagnosticls' })")
|
"au BufWritePre <buffer> lua vim.lsp.buf.formatting_seq_sync(nil, nil, { 'tsserver', 'diagnosticls' })")
|
||||||
end
|
end
|
||||||
|
|
||||||
require('lspfuzzy').setup {}
|
|
||||||
|
|
||||||
local config = require'lspconfig'
|
local config = require'lspconfig'
|
||||||
local capabilities_ = vim.lsp.protocol.make_client_capabilities()
|
local capabilities_ = vim.lsp.protocol.make_client_capabilities()
|
||||||
|
|
Loading…
Reference in a new issue