From d16408c111e700754facf12421648264ed9bcab9 Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Fri, 12 Nov 2021 20:57:52 +0700 Subject: [PATCH] neovim: use upstream nvim-cmp --- modules/user/neovim.nix | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/modules/user/neovim.nix b/modules/user/neovim.nix index 0feacc9..b08dd91 100644 --- a/modules/user/neovim.nix +++ b/modules/user/neovim.nix @@ -1,16 +1,5 @@ { config, lib, pkgs, ... }: let - nvim-cmp = pkgs.vimUtils.buildVimPluginFrom2Nix { - pname = "nvim-cmp"; - version = "2021-10-09"; - src = pkgs.fetchFromGitHub { - owner = "hrsh7th"; - repo = "nvim-cmp"; - rev = "339fe9177b8eff85b21a0e118db400ab89775c28"; - sha256 = "16k9zqqhsw4z4zx1x1y34yss2k2jzq04f4mlp5xc2rwnfxi8yd93"; - }; - meta.homepage = "https://github.com/hrsh7th/nvim-cmp/"; - }; luaconf = pkgs.writeText "config.lua" (lib.replaceStrings ["{{OMNISHARP_PATH}}"] ["${pkgs.omnisharp-roslyn}/bin/omnisharp"] (builtins.readFile ../../res/config.lua));