nix/prog/nvim: add git blame plugin
This commit is contained in:
parent
4b6e463377
commit
566a3e2c7a
2 changed files with 13 additions and 0 deletions
|
@ -1,5 +1,8 @@
|
||||||
{ buildVimPlugin }:
|
{ buildVimPlugin }:
|
||||||
|
|
||||||
|
# To calculate sha256 hash use the following command:
|
||||||
|
# nix-prefetch-url --unpack <URL>
|
||||||
|
|
||||||
{
|
{
|
||||||
material-vim = buildVimPlugin {
|
material-vim = buildVimPlugin {
|
||||||
name = "material-vim";
|
name = "material-vim";
|
||||||
|
@ -9,4 +12,13 @@
|
||||||
sha256 = "1lwlr6haj1damzmk6i6a1la7vql4y1wmb62iqvm6xgy2svr0s36i";
|
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";
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,6 +28,7 @@ let
|
||||||
neoformat # formating code
|
neoformat # formating code
|
||||||
nvim-treesitter # treesitter configurations and abstraction layer
|
nvim-treesitter # treesitter configurations and abstraction layer
|
||||||
fzf-vim # fuzzy finder
|
fzf-vim # fuzzy finder
|
||||||
|
blamer-nvim # A git blame plugin
|
||||||
];
|
];
|
||||||
|
|
||||||
# Additional language servers that we should install mannually
|
# Additional language servers that we should install mannually
|
||||||
|
|
Loading…
Reference in a new issue