fix(nvim): bump nvim-lspconfig

guard-nvim
Moritz Böhme 2023-09-27 13:13:05 +02:00
parent fadee02e60
commit f612173ddb
Signed by: moritz
GPG Key ID: 970C6E89EB0547A9
2 changed files with 9 additions and 0 deletions

View File

@ -54,6 +54,9 @@
nvim-puppeteer.flake = false; nvim-puppeteer.flake = false;
nvim-puppeteer.url = "github:chrisgrieser/nvim-puppeteer"; nvim-puppeteer.url = "github:chrisgrieser/nvim-puppeteer";
nvim-lspconfig.flake = false;
nvim-lspconfig.url = "github:neovim/nvim-lspconfig";
# Hyprland # Hyprland
hypr-contrib.url = "github:hyprwm/contrib"; hypr-contrib.url = "github:hyprwm/contrib";
hyprland.url = "github:hyprwm/Hyprland"; hyprland.url = "github:hyprwm/Hyprland";

View File

@ -38,6 +38,12 @@ with lib.my;
src = inputs.nvim-treesitter; src = inputs.nvim-treesitter;
}); });
# HACK: to fix error in nixpkgs version of nvim-lspconfig
nvim-lspconfig = prev.vimPlugins.nvim-lspconfig.overrideAttrs (_: {
version = mkVersionInput inputs.nvim-lspconfig;
src = inputs.nvim-lspconfig;
});
nvim-puppeteer = prev.vimUtils.buildVimPluginFrom2Nix { nvim-puppeteer = prev.vimUtils.buildVimPluginFrom2Nix {
pname = "nvim-puppeteer"; pname = "nvim-puppeteer";
version = mkVersionInput inputs.nvim-puppeteer; version = mkVersionInput inputs.nvim-puppeteer;