system/nix/progs/nvim/custom_plugins.nix

25 lines
768 B
Nix
Raw Normal View History

2022-06-23 10:45:58 +03:00
{ buildVimPlugin }:
2022-07-14 12:00:17 +03:00
# To calculate sha256 hash use the following command:
# nix-prefetch-url --unpack <URL>
2022-06-23 10:45:58 +03:00
{
material-vim = buildVimPlugin {
name = "material-vim";
src = builtins.fetchTarball {
name = "material-vim-2021-12-10";
url = https://github.com/kaicataldo/material.vim/archive/445534b2db7f7ec3dc088eae21c86ff0e9bb19de.tar.gz;
2022-06-23 10:45:58 +03:00
sha256 = "1lwlr6haj1damzmk6i6a1la7vql4y1wmb62iqvm6xgy2svr0s36i";
};
};
2022-07-14 12:00:17 +03:00
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";
};
};
2022-06-23 10:45:58 +03:00
}