feat: use update nixos packages for nvim plugins flog, lsp_lines and signature-help
parent
5fd57a74ed
commit
73838a8411
|
@ -1,49 +1,5 @@
|
|||
{ config, lib, pkgs, user, theme, ... }:
|
||||
|
||||
let
|
||||
cmp-nvim-lsp-signature-help = pkgs.vimUtils.buildVimPlugin {
|
||||
name = "cmp-nvim-lsp-signature-help";
|
||||
version = "2023-02-27";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "hrsh7th";
|
||||
repo = "cmp-nvim-lsp-signature-help";
|
||||
rev = "3d8912ebeb56e5ae08ef0906e3a54de1c66b92f1";
|
||||
sha256 = "sha256-yDxYvjTIeXIKYR3tg+bf+okXKr5JYc/I9obP+6uKey4=";
|
||||
};
|
||||
meta.homepage = "https://github.com/hrsh7th/cmp-nvim-lsp-signature-help";
|
||||
};
|
||||
|
||||
lsp_lines-nvim = pkgs.vimUtils.buildVimPlugin {
|
||||
name = "lsp_lines.nvim";
|
||||
version = "2023-02-27";
|
||||
src = pkgs.fetchgit {
|
||||
url = "https://git.sr.ht/~whynothugo/lsp_lines.nvim";
|
||||
rev = "ec98b45c8280e5ef8c84028d4f38aa447276c002";
|
||||
sha256 = "sha256-HjLCfuvZZ7vTJT0Te5VBRLNWvWIBFBou1Mvoxe2Hi3c=";
|
||||
};
|
||||
meta.homepage = "https://git.sr.ht/~whynothugo/lsp_lines.nvim";
|
||||
};
|
||||
pre-commit-nvim = pkgs.vimUtils.buildVimPlugin {
|
||||
name = "pre-commit.nvim";
|
||||
version = "2022-08-05";
|
||||
src = pkgs.fetchgit {
|
||||
url = "https://github.com/Ttibsi/pre-commit.nvim";
|
||||
rev = "4a608cef0f0a196fa39cdc60579eb9cf601d21c4";
|
||||
sha256 = "Y0biF/yrOX1YYztj8/u0n8zPN4YLGLSQL3vb9I3+3dE=";
|
||||
};
|
||||
meta.homepage = "https://github.com/Ttibsi/pre-commit.nvim";
|
||||
};
|
||||
vim-flog = pkgs.vimUtils.buildVimPlugin {
|
||||
name = "vim-flog";
|
||||
version = "2023-01-24";
|
||||
src = pkgs.fetchgit {
|
||||
url = "https://github.com/rbong/vim-flog";
|
||||
rev = "2ba8af2c9682e3560db5b813d10acf3ba3415bc1";
|
||||
sha256 = "sha256-xnzHAc30DD9W9/5s8PvpuBaEUJbB4BJ7WqbNb/CY3mY=";
|
||||
};
|
||||
meta.homepage = "https://github.com/rbong/vim-flog/";
|
||||
};
|
||||
in
|
||||
{
|
||||
home.packages = with pkgs.unstable; [
|
||||
xclip
|
||||
|
@ -107,7 +63,6 @@ in
|
|||
plenary-nvim
|
||||
vim-illuminate
|
||||
registers-nvim
|
||||
pre-commit-nvim
|
||||
vim-surround
|
||||
|
||||
editorconfig-nvim
|
||||
|
|
Loading…
Reference in New Issue