fix(nvim): bump nvim-lspconfig
parent
fadee02e60
commit
f612173ddb
|
@ -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";
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue