nix/prog/nvim: add git blame plugin

This commit is contained in:
Dmitriy Pleshevskiy 2022-07-14 12:00:17 +03:00
parent 4b6e463377
commit 566a3e2c7a
Signed by: pleshevskiy
GPG key ID: 1B59187B161C0215
2 changed files with 13 additions and 0 deletions

View file

@ -1,5 +1,8 @@
{ buildVimPlugin }:
# To calculate sha256 hash use the following command:
# nix-prefetch-url --unpack <URL>
{
material-vim = buildVimPlugin {
name = "material-vim";
@ -9,4 +12,13 @@
sha256 = "1lwlr6haj1damzmk6i6a1la7vql4y1wmb62iqvm6xgy2svr0s36i";
};
};
blamer-nvim = buildVimPlugin {
name = "blamer-nvim";
src = builtins.fetchTarball {
name = "blamer-nvim-2021-11-17";
url = https://github.com/APZelos/blamer.nvim/archive/f4eb22a9013642c411725fdda945ae45f8d93181.tar.gz;
sha256 = "1czjagkfjw57f2nvjjgbma1gcy1ylcd68dyfc5ivr2wc6fdw5lks";
};
};
}

View file

@ -28,6 +28,7 @@ let
neoformat # formating code
nvim-treesitter # treesitter configurations and abstraction layer
fzf-vim # fuzzy finder
blamer-nvim # A git blame plugin
];
# Additional language servers that we should install mannually